forked from team-supercharge/SCConfiguration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SCConfiguration.podspec
22 lines (16 loc) · 922 Bytes
/
SCConfiguration.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "SCConfiguration"
s.version = "2.1.0"
s.summary = "With SCConfiguration you can easily manage encrypted, environment dependent (or global) configuration parameters in a property list file."
s.homepage = "https://github.com/team-supercharge/SCConfiguration"
s.source = { :git => "https://github.com/team-supercharge/SCConfiguration.git", :tag => s.version.to_s }
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Supercharge" => "[email protected]" }
s.social_media_url = 'https://twitter.com/TeamSupercharge'
s.platform = :ios, '6.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'Foundation'
s.dependency 'RNCryptor', '~> 2.0'
end