forked from cucumber/cucumber-ruby
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
22 lines (19 loc) · 818 Bytes
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
gem 'cucumber-pro', '0.0.13', :group => :test
source 'https://rubygems.org'
gemspec
load File.expand_path('../Gemfile.local', __FILE__) if File.file? File.expand_path('../Gemfile.local', __FILE__)
unless ENV['CUCUMBER_USE_RELEASED_CORE']
core_path = File.expand_path('../../cucumber-ruby-core', __FILE__)
wire_path = File.expand_path('../../cucumber-ruby-wire', __FILE__)
if File.exist?(core_path) && !ENV['CUCUMBER_USE_GIT_CORE']
gem 'cucumber-core', :path => core_path
else
gem 'cucumber-core', :git => 'https://github.com/cucumber/cucumber-ruby-core.git'
end
if File.exist?(wire_path) && !ENV['CUCUMBER_USE_GIT_WIRE']
gem 'cucumber-wire', :path => wire_path
else
gem 'cucumber-wire', :git => 'https://github.com/cucumber/cucumber-ruby-wire.git'
end
end
gem 'mime-types', '~>2.99'