9f69430cfb
Using generic MIT license, rather than pointing to file
22 lines
606 B
Ruby
22 lines
606 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "AFIncrementalStore"
|
|
s.version = "0.1.0"
|
|
s.summary = "Core Data Persistence with AFNetworking, Done Right."
|
|
s.homepage = "https://github.com/AFNetworking/AFIncrementalStore"
|
|
|
|
s.license = 'MIT'
|
|
|
|
s.author = { "Mattt Thompson" => "m@mattt.me" }
|
|
|
|
s.platform = :ios, '5.0'
|
|
|
|
s.source = { :git => "https://github.com/AFNetworking/AFIncrementalStore.git", :tag => "0.1.0" }
|
|
s.source_files = 'AFIncrementalStore/*.{h,m}'
|
|
|
|
s.framework = 'CoreData'
|
|
|
|
s.requires_arc = true
|
|
|
|
s.dependency 'AFNetworking', '>= 0.9.0'
|
|
end
|