forked from jscruggs/metric_fu
-
Notifications
You must be signed in to change notification settings - Fork 96
/
Gemfile
58 lines (52 loc) · 1.43 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
# encoding: utf-8
source "https://rubygems.org"
if RUBY_VERSION >= '1.9.3'
gem "rubocop", platforms: :mri, groups: [:test, :local_development]
gem "activesupport", "~> 4.2"
if RUBY_VERSION > '2.3'
gem "json", ">= 2.0"
else
gem "json", "~> 1.7"
end
if RUBY_VERSION =~ /^2\.0\..*/
gem "unparser", "0.2.4"
elsif RUBY_VERSION =~ /^1\.9\.3.*/
gem "unparser", "0.2.4"
gem "json_pure", "2.0.1"
gem "mime-types", "2.99.3"
gem "rest-client", "1.8.0"
gem "addressable", "2.4.0"
gem "ffi", "1.9.14" # windows support
end
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