forked from trema/trema
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
37 lines (31 loc) · 1.11 KB
/
Gemfile
File metadata and controls
37 lines (31 loc) · 1.11 KB
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
source 'https://rubygems.org'
# Include dependencies from trema.gemspec. DRY!
gemspec
# Add dependencies required to use your gem here.
# Add dependencies to develop your gem here.
# Include everything needed to run rake, tests, features, etc.
group :development do
gem 'aruba', '~> 0.5.4'
gem 'cucumber', '~> 1.3.10'
gem 'flay', '~> 2.4.0'
gem 'flog', '~> 4.2.0'
gem 'rcov', '~> 1.0.0' if RUBY_VERSION < '1.9.0'
gem 'redcarpet', '~> 2.3.0' if RUBY_VERSION < '1.9.0'
gem 'redcarpet', '~> 3.0.0' if RUBY_VERSION >= '1.9.0'
gem 'reek', '~> 1.3.6'
gem 'relish', '~> 0.7'
gem 'rspec', '~> 2.14.1'
gem 'yard', '~> 0.8.7.3'
gem 'guard', '~> 1.8.3' if RUBY_VERSION < '1.9.0'
gem 'guard', '~> 2.2.2' if RUBY_VERSION >= '1.9.0'
gem 'guard-bundler', '~> 1.0.0' if RUBY_VERSION < '1.9.0'
gem 'guard-bundler', '~> 2.0.0' if RUBY_VERSION >= '1.9.0'
gem 'mime-types', '~> 1.25' if RUBY_VERSION < '1.9.0'
gem 'mime-types', '~> 2.0' if RUBY_VERSION >= '1.9.0'
gem 'rubocop', '~> 0.18.1' if RUBY_VERSION >= '1.9.0'
end
### Local variables:
### mode: Ruby
### coding: utf-8-unix
### indent-tabs-mode: nil
### End: