-
Notifications
You must be signed in to change notification settings - Fork 75
/
EasyMapping.podspec
36 lines (32 loc) · 1.36 KB
/
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
33
34
35
36
Pod::Spec.new do |s|
s.name = "EasyMapping"
s.version = "0.24.0"
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" => "[email protected]",
"Denys Telezhkin" => "[email protected]" }
s.source = { :git => "https://github.com/lucasmedeirosleite/EasyMapping.git", :tag => s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.9'
s.tvos.deployment_target = '9.0'
s.subspec 'Core' do |core|
core.watchos.deployment_target = '2.0'
core.ios.deployment_target = '9.0'
core.osx.deployment_target = '10.9'
core.tvos.deployment_target = '9.0'
core.frameworks = 'CoreData'
core.source_files = 'Sources/EasyMapping/*.{h,m}'
end
s.subspec 'XCTest' do |xctest|
xctest.ios.deployment_target = '9.0'
xctest.osx.deployment_target = '10.9'
xctest.tvos.deployment_target = '9.0'
xctest.dependency 'EasyMapping/Core'
xctest.frameworks = 'XCTest'
xctest.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '$(PLATFORM_DIR)/Developer/Library/Frameworks' }
xctest.source_files = 'Sources/EasyMapping+XCTestCase/*.{h,m}'
end
s.default_subspec = 'Core'
end