バグ #611 » Gemfile
1 |
source 'https://rubygems.org' |
---|---|
2 |
|
3 |
group :default do |
4 |
gem 'oauth', '~> 0.4.7' |
5 |
gem 'json_pure' |
6 |
gem 'bsearch', '~> 1.5.0' |
7 |
gem 'addressable' |
8 |
gem 'memoize' |
9 |
gem 'ruby-hmac' |
10 |
gem 'typed-array' |
11 |
gem 'delayer' |
12 |
gem 'gettext', '~> 2.3.9' |
13 |
end
|
14 |
|
15 |
group :test do |
16 |
gem 'rake' |
17 |
gem 'watch' |
18 |
gem 'mocha' |
19 |
gem 'webmock' |
20 |
end
|
21 |
|
22 |
group :plugin do |
23 |
Dir.glob(File.expand_path(File.join(File.dirname(__FILE__), "core/plugin/*/Gemfile"))){ |path| |
24 |
eval File.open(path).read |
25 |
}
|
26 |
Dir.glob(File.expand_path("~/.mikutter/plugin/*/Gemfile")){ |path| |
27 |
eval File.open(path).read |
28 |
}
|
29 |
end
|