[New Pod] STTwitter (0.0.1)

This commit is contained in:
Evan Roth
2013-05-17 15:36:47 -04:00
parent 8447a48c1e
commit 0ee8ab8a47
+32
View File
@@ -0,0 +1,32 @@
#
# Be sure to run `pod spec lint STTwitter.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about the attributes see http://docs.cocoapods.org/specification.html
#
Pod::Spec.new do |s|
s.name = "STTwitter"
s.version = "0.0.1"
s.summary = "A lightweight Objective-C wrapper for Twitter's REST API 1.1."
s.homepage = "https://github.com/nst/STTwitter"
s.license = {
:type => 'New BSD',
:text => <<-LICENSE
Copyright (c) 2012 Nicolas Seriot. All rights reserved.
LICENSE
}
s.authors = 'Nicolas Seriot', 'Frank Dowsett', 'xnyhps'
s.source = { :git => "https://github.com/nst/STTwitter.git", :tag => '0.0.1' }
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.source_files = 'STTwitter/*.{h,m}', 'STTwitter/Vendor/*.{h,m}'
s.ios.frameworks = 'CoreGraphics', 'Foundation', 'QuartzCore', 'UIKit'
s.requires_arc = false
end