forked from sferik/twitter-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtwitter.gemspec
47 lines (42 loc) · 2.13 KB
/
twitter.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/twitter/version', __FILE__)
Gem::Specification.new do |gem|
gem.add_development_dependency 'json', '~> 1.5'
gem.add_development_dependency 'maruku', '~> 0.6'
gem.add_development_dependency 'nokogiri', '~> 1.4'
gem.add_development_dependency 'rake', '~> 0.9'
gem.add_development_dependency 'rspec', '~> 2.6'
gem.add_development_dependency 'simplecov', '~> 0.4'
gem.add_development_dependency 'webmock', '~> 1.6'
gem.add_development_dependency 'yard', '~> 0.7'
gem.add_development_dependency 'ZenTest', '~> 4.5'
gem.add_runtime_dependency 'hashie', '~> 1.0.0'
gem.add_runtime_dependency 'faraday', '~> 0.6.1'
gem.add_runtime_dependency 'faraday_middleware', '~> 0.6.3'
gem.add_runtime_dependency 'multi_json', '~> 1.0.0'
gem.add_runtime_dependency 'multi_xml', '~> 0.2.0'
gem.add_runtime_dependency 'rash', '~> 0.3.0'
gem.add_runtime_dependency 'simple_oauth', '~> 0.1.5'
gem.authors = ["John Nunemaker", "Wynn Netherland", "Erik Michaels-Ober", "Steve Richert"]
gem.description = %q{A Ruby wrapper for the Twitter REST and Search APIs}
gem.post_install_message =<<eos
********************************************************************************
Follow @gem on Twitter for announcements, updates, and news.
https://twitter.com/gem
Join the mailing list!
https://groups.google.com/group/ruby-twitter-gem
Add your project or organization to the apps wiki!
https://github.com/jnunemaker/twitter/wiki/apps
********************************************************************************
eos
gem.email = ['nunemaker@gmail.com', 'wynn.netherland@gmail.com', 'sferik@gmail.com', 'steve.richert@gmail.com']
gem.executables = `git ls-files -- bin/*`.split("\n").map{|f| File.basename(f)}
gem.files = `git ls-files`.split("\n")
gem.homepage = 'https://github.com/jnunemaker/twitter'
gem.name = 'twitter'
gem.require_paths = ['lib']
gem.required_rubygems_version = Gem::Requirement.new('>= 1.3.6')
gem.summary = %q{Ruby wrapper for the Twitter API}
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.version = Twitter::VERSION.dup
end