forked from freshOS/Then
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paththenPromise.podspec
More file actions
20 lines (20 loc) · 878 Bytes
/
thenPromise.podspec
File metadata and controls
20 lines (20 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'thenPromise'
s.version = "6.0.0"
s.summary = "Elegant Promises for Swift"
s.homepage = "https://github.com/freshOS/then"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = 'S4cha'
s.source = { :git => "https://github.com/freshOS/then.git",
:tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '6.0'
s.social_media_url = 'https://twitter.com/sachadso'
s.source_files = "Source/*.swift"
s.requires_arc = true
s.description = "Elegant Async code for Swift 🎬- Async code finally readable by a human being"
s.module_name = 'Then'
s.swift_versions = ['2', '3', '4', '4.1', '4.2', '5.0', '5.1.3']
end