Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #551

Merged
merged 4 commits into from
Mar 12, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 24 additions & 27 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,36 @@ gemspec

# Debug aruba
group :debug do
if RUBY_VERSION >= '2' && !RUBY_PLATFORM.include?('java')
gem 'byebug', '~> 4.0.5'
gem 'pry-byebug', '~> 3.1.0'
unless RUBY_PLATFORM.include?('java')
if RUBY_VERSION >= '2.2'
gem 'byebug', '~> 10.0'
gem 'pry-byebug', '~> 3.4'
elsif RUBY_VERSION >= '2'
gem 'byebug', '~> 9.0'
gem 'pry-byebug', '~> 3.4'
elsif RUBY_VERSION > '1.9'
gem 'debugger', '~> 1.6.8'
gem 'pry-debugger', '~> 0.2.3'
end
end

if RUBY_VERSION < '2' && RUBY_VERSION > '1.9' && !RUBY_PLATFORM.include?('java')
gem 'debugger', '~> 1.6.8'
gem 'pry-debugger', '~> 0.2.3'
if RUBY_VERSION < '2'
gem 'pry-doc', '~> 0.8.0'
else
gem 'pry-doc', '~> 0.13.1'
end

gem 'pry-doc', '~> 0.8.0'
end

group :development, :test do
# we use this to demonstrate interactive debugging within our feature tests
if RUBY_VERSION >= '2'
gem 'pry', '~> 0.10.1'
gem 'pry', '~> 0.11.2'
else
gem 'pry', '~>0.9.12'
gem 'pry', '~> 0.9.12'
end

# Run development tasks
gem 'rake', '~> 10.4.2'
gem 'rake', '>= 10.0', '< 13.0'

if RUBY_VERSION >= '2.0.0'
# Lint travis yaml
Expand All @@ -43,7 +50,7 @@ group :development, :test do

# Test api
gem 'rspec', '~> 3.4'
gem 'fuubar', '~> 2.0.0'
gem 'fuubar', '~> 2.0'

# using platform for this make bundler complain about the same gem given
# twice
Expand All @@ -68,22 +75,12 @@ group :development, :test do
gem 'cucumber-pro', '~> 0.0'
end

if RUBY_VERSION >= '1.9.3'
# License compliance
# License compliance
if RUBY_VERSION >= '2.3'
gem 'license_finder', '~> 5.0.3'
elsif RUBY_VERSION >= '1.9.3'
gem 'license_finder', '~> 2.0.4'
end

# if RUBY_VERSION >= '1.9.3'
# # Upload documentation
# gem 'relish', '~> 0.7.1'
# end

gem 'minitest', '~> 5.8.0'

gem 'json', '~> 1.8'
end

platforms :rbx do
gem 'rubysl', '~> 2.0'
gem 'rubinius-developer_tools'
gem 'minitest', '~> 5.8'
end
2 changes: 1 addition & 1 deletion aruba.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |s|
s.homepage = 'http://github.com/cucumber/aruba'

s.add_runtime_dependency 'cucumber', '>= 1.3.19'
s.add_runtime_dependency 'childprocess', '~> 0.8.0'
s.add_runtime_dependency 'childprocess', ['>= 0.6.3', '< 0.10.0']
s.add_runtime_dependency 'ffi', '~> 1.9.10'
s.add_runtime_dependency 'rspec-expectations', '>= 2.99'
s.add_runtime_dependency 'contracts', '~> 0.9'
Expand Down