14 lines
520 B
Ruby
14 lines
520 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'SSDataKit'
|
|
s.version = '0.1.0'
|
|
s.summary = 'Eliminate your Core Data boilerplate code.'
|
|
s.homepage = 'https://github.com/soffes/ssdatakit'
|
|
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
|
s.author = { 'Sam Soffes' => 'sam@soff.es' }
|
|
s.source = { :git => 'https://github.com/soffes/ssdatakit.git', :tag => '0.1.0' }
|
|
s.platform = :ios
|
|
s.source_files = 'SSDataKit/*.{h,m}'
|
|
s.framework = 'CoreData'
|
|
s.requires_arc = true
|
|
end
|