-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCMFactory.podspec
More file actions
24 lines (15 loc) · 777 Bytes
/
Copy pathCMFactory.podspec
File metadata and controls
24 lines (15 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = "CMFactory"
s.version = "1.4.2"
s.summary = "FactoryGirl and fixture loader for iOS."
s.homepage = "https://github.com/lucasmedeirosleite/CMFactory"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Lucas Medeiros" => "lucastoc@gmail.com" }
s.source = { :git => "https://github.com/lucasmedeirosleite/CMFactory.git", tag: s.version.to_s }
s.requires_arc = true
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.source_files = 'CMFactoryExampleTests/CMFactory'
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(inherited)" "$(SDKROOT)/Developer/Library/Frameworks" "$(DEVELOPER_LIBRARY_DIR)/Frameworks"' }
s.dependency 'Mantle', '~> 1.5.4'
end