forked from lucasmedeirosleite/EasyMapping
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEasyMapping.podspec
32 lines (23 loc) · 941 Bytes
/
EasyMapping.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
Pod::Spec.new do |s|
s.name = "EasyMapping"
s.version = "0.14.1"
s.summary = "The easiest way to map data from your webservice."
s.homepage = "https://github.com/lucasmedeirosleite/EasyMapping"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { "Lucas Medeiros" => "lucastoc@gmail.com",
"Denys Telezhkin" => "denys.telezhkin@yandex.ru" }
s.source = { :git => "https://github.com/EasyMapping/EasyMapping.git", :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.subspec 'Core' do |core|
core.frameworks = 'CoreData'
core.source_files = 'EasyMapping/*.{h,m}'
end
s.subspec 'XCTest' do |xctest|
xctest.dependency 'EasyMapping/Core'
xctest.frameworks = 'XCTest'
xctest.source_files = 'XCTest+EasyMapping/*.{h,m}'
end
s.default_subspec = 'Core'
end