forked from metricfu/metric_fu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
74 lines (66 loc) · 2.09 KB
/
Gemfile
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# encoding: utf-8
source "https://rubygems.org"
if RUBY_VERSION =~ /^2\.2\.[0-1]p?\d*/ || RUBY_VERSION =~ /^2\.1\.\d*p?\d*/
gem "activesupport", "~> 4.2"
gem "json", "~> 1.7"
gem "rubocop", platforms: :mri, groups: [:test, :local_development]
elsif RUBY_VERSION =~ /^2\.0\..*/
gem "activesupport", "~> 4.2"
gem "json", "~> 1.7"
gem "unparser", "0.2.4"
gem "rubocop", platforms: :mri, groups: [:test, :local_development]
elsif RUBY_VERSION =~ /^1\.9\.3.*/
gem "activesupport", "~> 4.2"
gem "json", "~> 1.7"
gem "unparser", "0.2.4"
gem "json_pure", "2.0.1"
gem "mime-types", "2.99.3"
gem "rest-client", "1.8.0"
gem "rubocop", platforms: :mri, groups: [:test, :local_development]
gem "addressable", "2.4.0"
gem "ffi", "1.9.14" # windows support
elsif RUBY_VERSION =~ /^1\.9\.2.*/
# because of https://github.com/railsbp/rails_best_practices/blob/master/rails_best_practices.gemspec
gem "activesupport", "~> 3.2"
# because of https://github.com/troessner/reek/issues/334
gem "reek", "~> 1.4.0"
# rbp -> as -> i18n
gem "i18n", "0.6.11"
gem "parallel", "= 1.3.3" # 1.3.4 disallows 1.9.2
gem "unparser", "0.1.5"
gem "json_pure", "2.0.1"
gem "mime-types", "2.99.3"
gem "rest-client", "1.8.0"
gem "json", "~> 1.7"
gem "addressable", "2.4.0"
gem "rainbow", "2.1.0"
gem "ffi", "1.9.14" # windows support
end
gemspec path: File.expand_path("..", __FILE__)
platform :jruby do
group :jruby do
gem "jruby-openssl", "~> 0.9.17"
end
end
group :test, :local_development do
gem "pry"
gem "pry-nav"
end
# Added by devtools
group :development do
gem "rake", "~> 10.1.0"
gem "yard", "~> 0.8.7", group: :yard
end
group :guard do
gem "guard", "~> 1.8.1"
gem "guard-bundler", "~> 1.0.0"
gem "guard-rspec"
# file system change event handling
gem "listen", "~> 1.3.0"
gem "rb-fchange", "~> 0.0.6", require: false
gem "rb-fsevent", "~> 0.9.3", require: false
gem "rb-inotify", "~> 0.9.0", require: false
# notification handling
gem "libnotify", "~> 0.8.0", require: false
gem "terminal-notifier-guard", "~> 1.5.3", require: false
end