-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathBIND.podspec
35 lines (27 loc) · 1.17 KB
/
BIND.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
35
Pod::Spec.new do |s|
s.name = "BIND"
s.version = "1.4.7"
s.summary = "Data Binding and MVVM for iOS."
s.description = <<-DESC
Data Binding and MVVM for iOS.
- **data binding** from XIBs or code by using BIND DSL
- **data transforms** by using subclasses of `NSValueTransformer`
- **automagic unbinding** - **no more KVO exceptions** on dealloc
- **MVVM** out of the box by utilizing protocols and abstract classes
DESC
s.homepage = "https://github.com/markohlebar/BIND"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "Marko Hlebar" => "[email protected]" }
s.social_media_url = "https://twitter.com/markohlebar"
s.source = { :git => "https://github.com/markohlebar/BIND.git", :tag => "1.4.7" }
s.source_files = "BIND", "BIND/**/*.{h,m}"
s.ios.exclude_files = "BIND/Categories/OSX/**/*.{h,m}"
s.osx.exclude_files = "BIND/Categories/iOS/**/*.{h,m}"
# s.public_header_files = "Classes/**/*.h"
s.prefix_header_file = 'BIND-PrefixHeader.pch'
s.requires_arc = true
s.platform = :osx, "10.8"
s.platform = :ios, "7.0"
s.dependency 'libextobjc'
s.dependency 'NODE_'
end