23 lines
619 B
Ruby
23 lines
619 B
Ruby
Pod::Spec.new do |s|
|
|
|
|
s.name = "EasyMapping"
|
|
s.version = "0.4.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.author = { "Lucas Medeiros" => "lucastoc@gmail.com" }
|
|
|
|
s.source = { :git => "https://github.com/lucasmedeirosleite/EasyMapping.git", :tag => "0.4.0" }
|
|
|
|
s.requires_arc = true
|
|
|
|
s.platform = :ios, '5.0'
|
|
s.ios.deployment_target = '5.0'
|
|
s.frameworks = 'CoreData'
|
|
|
|
s.source_files = 'EasyMapping/*.{h,m}'
|
|
|
|
end
|