-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathBender.podspec
More file actions
21 lines (16 loc) · 787 Bytes
/
Copy pathBender.podspec
File metadata and controls
21 lines (16 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
##
#
Pod::Spec.new do |s|
s.name = "Bender"
s.version = "2.0.0"
s.summary = "JSON declarative validating and binding library written in Swift"
s.description = "A declarative JSON mapping library which does not pollute your models with ridiculous initializers and stuff. Describes JSON for your classes, does not dress your classes for JSON"
s.homepage = "https://github.com/ptiz/bender"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Evgeny Kamyshanov" => "ptiz@live.ru" }
s.platform = :ios, :osx
s.ios.deployment_target = "10.0"
s.osx.deployment_target = "10.9"
s.source = { :git => "https://github.com/ptiz/bender.git", :tag => "2.0.0" }
s.source_files = "Bender", "Bender/**/*.{swift}"
end