File: Gemfile

package info (click to toggle)
mikutter 3.0.7%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 9,396 kB
  • ctags: 1,916
  • sloc: ruby: 16,619; sh: 117; makefile: 27
file content (29 lines) | stat: -rw-r--r-- 648 bytes parent folder | download | duplicates (2)
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
source 'https://rubygems.org'

group :default do
  gem 'oauth', '~> 0.4'
  gem 'json_pure', '~> 1.8'
  gem 'bsearch', '~> 1.5'
  gem 'addressable', '~> 2.3'
  gem 'memoize', '~> 1.3'
  gem 'ruby-hmac', '~> 0.4'
  gem 'typed-array', '~> 0.1'
  gem 'delayer', '~> 0.0'
end

group :test do
  gem 'rake', '~> 10.1'
  gem 'watch', '~> 0.1'
  gem 'mocha', '~> 0.14'
  gem 'webmock', '~> 1.17'
end


group :plugin do
  Dir.glob(File.expand_path(File.join(File.dirname(__FILE__), "core/plugin/*/Gemfile"))){ |path|
    eval File.open(path).read
  }
  Dir.glob(File.expand_path("~/.mikutter/plugin/*/Gemfile")){ |path|
    eval File.open(path).read
  }
end