11 lines
375 B
Ruby
11 lines
375 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'AnyJSON'
|
|
s.version = '0.0.1'
|
|
s.license = 'MIT'
|
|
s.summary = 'Encode / Decode JSON by any means possible.'
|
|
s.homepage = 'https://github.com/mattt/AnyJSON'
|
|
s.authors = { 'Mattt Thompson' => 'm@mattt.me' }
|
|
s.source = { :git => 'https://github.com/mattt/AnyJSON.git', :tag => '0.0.1' }
|
|
s.source_files = 'AnyJSON.{h,m}'
|
|
end
|