forked from trema/trema
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
34 lines (26 loc) · 792 Bytes
/
Gemfile
File metadata and controls
34 lines (26 loc) · 792 Bytes
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
source "https://rubygems.org"
# Include dependencies from trema.gemspec. DRY!
gemspec
# Add dependencies required to use your gem here.
# Example:
# gem "activesupport", ">= 2.3.5"
# Add dependencies to develop your gem here.
# Include everything needed to run rake, tests, features, etc.
group :development do
gem "aruba", "~> 0.5.3"
gem "cucumber", "~> 1.3.8"
gem "flay", "~> 2.4.0"
gem "flog", "~> 4.1.2"
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.3"
gem "relish", "~> 0.7"
gem "rspec", "~> 2.14.1"
gem "yard", "~> 0.8.7.1"
end
### Local variables:
### mode: Ruby
### coding: utf-8-unix
### indent-tabs-mode: nil
### End: