forked from sferik/twitter-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
twitter.gemspec
42 lines (37 loc) · 1.89 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
# encoding: utf-8
require File.expand_path('../lib/twitter/version', __FILE__)
Gem::Specification.new do |gem|
gem.add_dependency 'faraday', '~> 0.7.4'
gem.add_dependency 'multi_json', '~> 1.0.0'
gem.add_dependency 'simple_oauth', '~> 0.1.5'
gem.add_dependency 'twitter-text', '~> 1.4.2'
gem.add_development_dependency 'json', '~> 1.6'
gem.add_development_dependency 'rake', '~> 0.9'
gem.add_development_dependency 'rdiscount', '~> 1.6'
gem.add_development_dependency 'rspec', '~> 2.6'
gem.add_development_dependency 'simplecov', '~> 0.4'
gem.add_development_dependency 'webmock', '~> 1.7'
gem.add_development_dependency 'yard', '~> 0.7'
gem.authors = ["John Nunemaker", "Wynn Netherland", "Erik Michaels-Ober", "Steve Richert"]
gem.description = %q{A Ruby wrapper for the Twitter API.}
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.post_install_message =<<eos
********************************************************************************
You should follow @gem on Twitter for announcements and updates about the gem.
https://twitter.com/gem
Please direct any questions about the library to the mailing list.
https://groups.google.com/group/ruby-twitter-gem
Does your project or organization use this gem? Add it to the apps wiki!
https://github.com/jnunemaker/twitter/wiki/apps
********************************************************************************
eos
gem.require_paths = ['lib']
gem.required_rubygems_version = Gem::Requirement.new('>= 1.3.6')
gem.summary = %q{Twitter API wrapper}
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.version = Twitter::Version.to_s
end