-
Notifications
You must be signed in to change notification settings - Fork 94
/
earthquake.gemspec
39 lines (34 loc) · 1.43 KB
/
earthquake.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "earthquake/version"
Gem::Specification.new do |s|
s.name = "earthquake"
s.version = Earthquake::VERSION
s.authors = ["jugyo"]
s.email = ["jugyo.org@gmail.com"]
s.homepage = "https://github.com/jugyo/earthquake"
s.summary = %q{Terminal Twitter Client}
s.description = %q{Twitter Client on Terminal with Twitter Streaming API.}
s.rubyforge_project = "earthquake"
s.files = `git ls-files`.split("\n") + ['consumer.yml']
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
# for twitter-stream
s.add_runtime_dependency "eventmachine", "= 1.0.5"
s.add_runtime_dependency "twitter-stream"
s.add_runtime_dependency "notify"
s.add_runtime_dependency "i18n"
s.add_runtime_dependency "activesupport"
s.add_runtime_dependency "awesome_print"
s.add_runtime_dependency "launchy"
s.add_runtime_dependency "oauth"
s.add_runtime_dependency "jugyo-twitter_oauth", "= 0.5.0.pre5"
s.add_runtime_dependency "slop", "~> 3.4.0"
s.add_development_dependency "rake", '< 11.0'
s.add_development_dependency "rspec"
s.add_development_dependency "bundler"
# specify any dependencies here; for example:
# s.add_development_dependency "rspec"
# s.add_runtime_dependency "rest-client"
end