17 lines
508 B
Ruby
17 lines
508 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'Underscore.m'
|
|
s.version = '0.1.0'
|
|
s.license = 'MIT'
|
|
s.summary = 'A port of underscore.js to Objective-C.'
|
|
s.homepage = 'https://github.com/robb/Underscore.m'
|
|
s.author = { 'Robert Böhnke' => 'robb@robb.is' }
|
|
|
|
s.source = { :git => 'https://github.com/robb/Underscore.m.git', :tag => '0.1.0' }
|
|
|
|
s.description = 'Underscore.m is an Objective-C library inspired by underscore.js.'
|
|
|
|
s.source_files = 'Underscore/**/*.{h,m}'
|
|
|
|
s.requires_arc = true
|
|
end
|