forked from DeclarativeHub/Bond
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bond.podspec
34 lines (28 loc) · 1.48 KB
/
Bond.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
27
28
29
30
31
32
33
34
Pod::Spec.new do |s|
s.name = "Bond"
s.version = "6.0.4"
s.summary = "A Swift binding framework"
s.description = <<-DESC
Bond is a Swift reactive binding framework that takes binding concept to a whole new level.
It's simple, powerful, type-safe and multi-paradigm - just like Swift.
Bond is also a framework that bridges the gap between the reactive and imperative paradigms.
You can use it as a standalone framework to simplify your state changes with bindings and reactive data sources,
but you can also use it with ReactiveKit to complement your reactive data flows with bindings and
reactive delegates and data sources.
DESC
s.homepage = "https://github.com/SwiftBond/Bond"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Srdan Rasic" => "[email protected]" }
s.social_media_url = "http://twitter.com/srdanrasic"
s.ios.deployment_target = "8.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = '9.0'
s.source = { :git => "https://github.com/SwiftBond/Bond.git", :tag => "6.0.4" }
s.source_files = 'Sources/**/*.swift', 'Bond/*.{h,m,swift}'
s.ios.exclude_files = "Sources/AppKit"
s.tvos.exclude_files = "Sources/AppKit"
s.osx.exclude_files = "Sources/UIKit"
s.requires_arc = true
s.dependency 'ReactiveKit', '~> 3.3'
s.dependency 'Diff', '~> 0.4'
end