forked from croath/SecretSwitch
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathSecretSwitch.podspec
More file actions
19 lines (18 loc) · 810 Bytes
/
SecretSwitch.podspec
File metadata and controls
19 lines (18 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "SecretSwitch"
s.version = "0.1.0"
s.summary = "Protect your secret info while switching apps."
s.description = <<-DESC
cover apps with a blur screenshot to keep secret after double clicking iPhone's home.
DESC
s.homepage = "https://github.com/shjborage/SecretSwitch"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "shjborage" => "[email protected]" "croath" }
s.platform = :ios
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/shjborage/SecretSwitch.git", :tag => "v0.1.0" }
s.source_files = "SecretSwitch/*.{h,m}"
# s.framework = "SomeFramework"
# s.frameworks = "SomeFramework", "AnotherFramework"
s.requires_arc = true
end