forked from cucumber/aruba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
40 lines (33 loc) · 853 Bytes
/
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
source 'https://rubygems.org'
gemspec
group :development, :test do
gem 'simplecov'
end
group :debug do
gem 'pry', '~> 0.10.1 '
gem 'byebug', '~> 4.0.5'
gem 'pry-byebug', '~> 3.1.0'
gem 'pry-stack_explorer', '~> 0.4.9'
gem 'pry-doc', '~> 0.6.0'
end
group :development, :test do
gem 'bcat', '>= 0.6.1'
gem 'kramdown', '>= 0.14'
gem 'rake', '>= 0.9.2'
gem 'rspec', '>= 3.0.0'
gem 'fuubar', '>= 1.1.1'
gem 'cucumber-pro', '~> 0.0'
gem 'rubocop', '~> 0.31.0'
gem 'license_finder', '~> 2.0.4'
end
platforms :rbx do
gem 'rubysl', '~> 2.0'
gem 'rubinius-developer_tools'
end
# Use source from sibling folders (if available) instead of gems
# %w[cucumber].each do |g|
# if File.directory?(File.dirname(__FILE__) + "/../#{g}")
# @dependencies.reject!{|dep| dep.name == g}
# gem g, :path => "../#{g}"
# end
# end