forked from vapor-community/node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNodeCocoapods.podspec
25 lines (24 loc) · 1.02 KB
/
NodeCocoapods.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
Pod::Spec.new do |spec|
# Node was taken, so using NodeCocoapods here ... we'll see how that works
# in code do `#if COCOAPODS` to use correct import
spec.name = 'NodeCocoapods'
spec.version = '2.0.1'
spec.license = 'MIT'
spec.homepage = 'https://github.com/vapor/node'
spec.authors = { 'Vapor' => 'contact@vapor.codes' }
spec.summary = 'A formatted data encapsulation meant to facilitate the transformation from one object to another.'
spec.source = { :git => "#{spec.homepage}.git", :tag => "#{spec.version}" }
spec.ios.deployment_target = "8.0"
spec.osx.deployment_target = "10.10"
spec.watchos.deployment_target = "2.0"
spec.tvos.deployment_target = "9.0"
spec.requires_arc = true
spec.social_media_url = 'https://twitter.com/codevapor'
spec.default_subspec = "Default"
spec.subspec "Default" do |ss|
ss.source_files = 'Sources/**/*.{swift}'
ss.dependency 'Core', '~> 2.0'
ss.dependency 'Bits', '~> 1.0'
ss.dependency 'Debugging', '~> 1.0'
end
end