-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathJetpack.podspec
22 lines (22 loc) · 1.01 KB
/
Jetpack.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "Jetpack"
s.version = "5.0.0"
s.summary = "Light and bright functional reactive framework"
s.description = <<-DESC
Minimalistic implementation of reactive primitives. Basically observer pattern implementations which helps to easily organize interaction of different components.
DESC
s.homepage = "https://github.com/psharanda/Jetpack"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Pavel Sharanda" => "[email protected]" }
s.social_media_url = "https://twitter.com/e2f"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.watchos.deployment_target = "2.0"
s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/psharanda/Jetpack.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*"
s.ios.frameworks = 'UIKit', 'Foundation'
s.osx.frameworks = 'AppKit', 'Foundation'
s.watchos.frameworks = 'UIKit', 'Foundation'
s.tvos.frameworks = 'UIKit', 'Foundation'
end