Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
| # coding: utf-8 | |
| lib = File.expand_path('../lib', __FILE__) | |
| $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) | |
| require 'twurl/version' | |
| Gem::Specification.new do |spec| | |
| spec.add_dependency 'oauth', '~> 0.4' | |
| spec.add_development_dependency 'bundler', '~> 1.0' | |
| spec.authors = ["Marcel Molina", "Erik Michaels-Ober"] | |
| spec.description = %q{Curl for the Twitter API} | |
| spec.email = ['marcel@twitter.com'] | |
| spec.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } | |
| spec.extra_rdoc_files = %w(COPYING INSTALL README) | |
| spec.files = `git ls-files -z`.split("\x0").reject { |f| f.start_with?('test/') } | |
| spec.homepage = 'http://github.com/twitter/twurl' | |
| spec.licenses = ['MIT'] | |
| spec.name = 'twurl' | |
| spec.rdoc_options = ['--title', 'twurl -- OAuth-enabled curl for the Twitter API', '--main', 'README', '--line-numbers', '--inline-source'] | |
| spec.require_paths = ['lib'] | |
| spec.required_ruby_version = '>= 1.9.3' | |
| spec.rubyforge_project = 'twurl' | |
| spec.summary = spec.description | |
| spec.version = Twurl::Version | |
| end |