forked from Nirma/Default
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.podspec
22 lines (20 loc) · 887 Bytes
/
Default.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 = "Default"
s.version = "2.0.0"
s.summary = "Modern interface to UserDefaults + Codable support"
s.description = <<-DESC
Modern interface to UserDefaults + Codable support
please refer to README.md for usage details.
DESC
s.homepage = "https://github.com/Nirma/Default"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Nicholas Maccharoli " => "[email protected]" }
s.social_media_url = "http://twitter.com/din0sr"
s.platform = :ios, "9.0"
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "4.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/Nirma/Default.git", :tag => "#{s.version}" }
s.source_files = 'Sources/*.swift'
end