-
Notifications
You must be signed in to change notification settings - Fork 6
/
WooOS.podspec
26 lines (22 loc) · 868 Bytes
/
WooOS.podspec
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
26
Pod::Spec.new do |spec|
spec.name = "WooOS"
spec.version = "0.1.15"
spec.swift_version = '4.0'
spec.cocoapods_version = '>= 0.36'
spec.authors = { "Brianna Lee" => '[email protected]' }
spec.license = { type: 'MIT', file: 'LICENSE' }
spec.homepage = "https://github.com/bornbrie/WooOS"
spec.source = { git: "https://github.com/bornbrie/WooOS.git", tag: "v#{spec.version}", submodules: true }
spec.summary = "WooCommerce Swift SDK for iOS, tvOS, watchOS, and macOS."
spec.ios.deployment_target = '9.3'
spec.watchos.deployment_target = '2.0'
spec.tvos.deployment_target = '9.0'
spec.macos.deployment_target = '10.11'
spec.dependency 'Alamofire', '~> 4.6'
spec.dependency 'ObjectMapper', '~> 3.0'
spec.dependency 'Locksmith'
spec.ios.dependency 'BraintreeDropIn'
spec.requires_arc = true
spec.ios.framework = 'UIKit'
spec.source_files = "WooOS/**/*.{h,swift}"
end