-
-
Notifications
You must be signed in to change notification settings - Fork 363
Expand file tree
/
Copy pathSwiftyUserDefaults.podspec
More file actions
25 lines (22 loc) · 820 Bytes
/
SwiftyUserDefaults.podspec
File metadata and controls
25 lines (22 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Pod::Spec.new do |s|
s.name = 'SwiftyUserDefaults'
s.version = '5.3.0'
s.license = 'MIT'
s.summary = 'Swifty API for UserDefaults'
s.homepage = 'https://github.com/sunshinejr/SwiftyUserDefaults'
s.authors = { 'Radek Pietruszewski' => 'this.is@radex.io', 'Łukasz Mróz' => 'thesunshinejr@gmail.com' }
s.source = { :git => 'https://github.com/radex/SwiftyUserDefaults.git', :tag => s.version }
s.requires_arc = true
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.11'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '2.0'
if s.respond_to? 'swift_version'
s.swift_version = "4.2"
end
if s.respond_to? 'swift_versions'
s.swift_versions = ['4.1', '4.2', '5.0', '5.1']
end
s.cocoapods_version = '>= 1.4.0'
s.source_files = 'Sources/*.swift'
end