-
Notifications
You must be signed in to change notification settings - Fork 19
/
Gemfile.devtools
72 lines (60 loc) · 1.71 KB
/
Gemfile.devtools
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
# encoding: utf-8
group :development do
gem 'rake', '~> 10.4.0'
gem 'rspec', '~> 3.1.0'
gem 'rspec-core', '~> 3.1.7'
gem 'rspec-its', '~> 1.1.0'
gem 'yard', '~> 0.8.7.6'
platform :rbx do
gem 'rubysl-singleton', '~> 2.0.0'
end
end
group :yard do
gem 'kramdown', '~> 1.5.0'
end
group :guard do
gem 'guard', '~> 2.10.1'
gem 'guard-bundler', '~> 2.0.0'
gem 'guard-rspec', '~> 4.3.1'
gem 'guard-rubocop', '~> 1.2.0'
# file system change event handling
gem 'listen', '~> 2.8.1'
gem 'rb-fchange', '~> 0.0.6', require: false
gem 'rb-fsevent', '~> 0.9.4', require: false
gem 'rb-inotify', '~> 0.9.5', require: false
# notification handling
gem 'libnotify', '~> 0.8.4', require: false
gem 'rb-notifu', '~> 0.0.4', require: false
gem 'terminal-notifier-guard', '~> 1.6.4', require: false
end
group :metrics do
gem 'coveralls', '~> 0.7.2'
gem 'flay', '~> 2.5.0'
gem 'flog', '~> 4.3.0'
gem 'reek', '~> 1.5.0'
gem 'rubocop', '~> 0.27.1'
gem 'simplecov', '~> 0.9.1'
gem 'yardstick', '~> 0.9.9'
platforms :mri do
gem 'mutant', '~> 0.6.7', git: 'https://github.com/mbj/mutant.git'
gem 'mutant-rspec', '~> 0.6.7', git: 'https://github.com/mbj/mutant.git'
end
platforms :ruby_19, :ruby_20 do
gem 'yard-spellcheck', '~> 0.1.5'
end
platform :rbx do
gem 'json', '~> 1.8.1'
gem 'racc', '~> 1.4.12'
gem 'rubysl-logger', '~> 2.1.0'
gem 'rubysl-open-uri', '~> 2.0.0'
gem 'rubysl-prettyprint', '~> 2.0.3'
end
end
group :benchmarks do
gem 'rbench', '~> 0.2.3'
end
platform :jruby do
group :jruby do
gem 'jruby-openssl', '~> 0.9.4'
end
end