26 lines
815 B
Ruby
26 lines
815 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "CMFactory"
|
|
s.version = "1.1.1"
|
|
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 => "1.1.1" }
|
|
|
|
s.requires_arc = true
|
|
|
|
s.platform = :ios, '5.0'
|
|
s.ios.deployment_target = '5.0'
|
|
|
|
s.source_files = 'CMFactoryExampleTests/CMFactory'
|
|
|
|
s.xcconfig = { 'FRAMEWORK_SEARCH_PATHS' => '"$(inherited)" "$(SDKROOT)/Developer/Library/Frameworks" "$(DEVELOPER_LIBRARY_DIR)/Frameworks"' }
|
|
|
|
s.dependency 'SBJson', '~> 3.1.1'
|
|
s.dependency 'Mantle', '~> 0.2.2'
|
|
|
|
end
|