Update specs to use the better Ruby accessor style.

And remove stub specs for now.
This commit is contained in:
Eloy Duran
2011-09-24 11:20:47 -05:00
parent 0889e331f2
commit fb8da4dbca
19 changed files with 176 additions and 190 deletions
+9 -10
View File
@@ -1,13 +1,12 @@
Pod::Spec.new do
name 'JSONKit'
version '1.4'
summary 'A Very High Performance Objective-C JSON Library.'
homepage 'https://github.com/johnezang/JSONKit'
author 'John Engelhart'
source :git => 'https://github.com/johnezang/JSONKit.git',
:commit => 'v1.4'
Pod::Spec.new do |s|
s.name = 'JSONKit'
s.version = '1.4'
s.summary = 'A Very High Performance Objective-C JSON Library.'
s.homepage = 'https://github.com/johnezang/JSONKit'
s.author = 'John Engelhart'
s.source = { :git => 'https://github.com/johnezang/JSONKit.git', :tag => 'v1.4' }
source_files 'JSONKit.*'
s.source_files = 'JSONKit.*'
xcconfig 'OTHER_LDFLAGS' => '-ObjC'
s.xcconfig = { 'OTHER_LDFLAGS' => '-ObjC' }
end