Skip to content

Commit

Permalink
Fix syntax error and namespace spec by version number.
Browse files Browse the repository at this point in the history
  • Loading branch information
alloy committed Dec 8, 2011
1 parent 0121223 commit f3eaca1
Showing 1 changed file with 5 additions and 4 deletions.
Expand Up @@ -3,10 +3,11 @@ Pod::Spec.new do |s|
s.version = '1.0'
s.license = 'Simplified BSD License'
s.summary = 'TouchJSON is an Objective-C based parser and generator for JSON encoded data.'
s.homepage = 'https://github.com/TouchCode/TouchJSON
s.homepage = 'https://github.com/TouchCode/TouchJSON'
s.author = { 'Jonathan Wight' => 'schwa@touchcode.com' }
s.source = { :git => 'git://github.com/CocoaPods/CocoaPods.git', :tag => '1.0' }
s.source_files = 'Source', 'Source/**/*.{h,m}'
s.framework = 'Foundation'
s.source = { :git => 'https://github.com/TouchCode/TouchJSON.git', :tag => '1.0' }
s.source_files = 'Source/**/*.{h,m}'
s.framework = 'Foundation'
s.requires_arc = true
s.clean_paths = 'Support'
end

0 comments on commit f3eaca1

Please sign in to comment.