Defaults/Defaults.podspec

17 lines
607 B
Plaintext
Raw Normal View History

2018-06-07 12:07:48 +08:00
Pod::Spec.new do |s|
s.name = 'Defaults'
2019-07-08 15:09:19 +08:00
s.version = '2.0.1'
2018-06-29 16:49:06 +08:00
s.summary = 'Swifty and modern UserDefaults'
s.license = 'MIT'
2018-06-07 12:07:48 +08:00
s.homepage = 'https://github.com/sindresorhus/Defaults'
s.social_media_url = 'https://twitter.com/sindresorhus'
s.authors = { 'Sindre Sorhus' => 'sindresorhus@gmail.com' }
s.source = { :git => 'https://github.com/sindresorhus/Defaults.git', :tag => "v#{s.version}" }
s.source_files = 'Sources/*.swift'
2019-07-08 15:07:30 +08:00
s.swift_version = '5.0'
2018-06-29 16:49:06 +08:00
s.macos.deployment_target = '10.12'
2018-06-07 12:07:48 +08:00
s.ios.deployment_target = '10.0'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '3.0'
end