機能 #628 » Gemfile.rb
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 'fluent-logger' |
12 |
end
|
13 |
|
14 |
group :test do |
15 |
gem 'rake' |
16 |
gem 'watch' |
17 |
gem 'mocha' |
18 |
gem 'webmock' |
19 |
end
|
20 |
|
21 |
group :plugin do |
22 |
Dir.glob(File.expand_path(File.join(File.dirname(__FILE__), "core/plugin/*/Gemfile"))){ |path| |
23 |
eval File.open(path).read |
24 |
}
|
25 |
|
26 |
Dir.glob(File.expand_path("confroot/plugin/*/Gemfile")){|path| eval File.open(path).read} |
27 |
end
|