Skip to content

Commit

Permalink
default value for local setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieujobin committed Apr 27, 2023
1 parent f62c929 commit 8bba5e3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ git_source(:github){ |repo_name| "https://github.com/#{repo_name}.git" }

gemspec :path => "."

ruby ENV['RUBY_VERSION']
gem "rails", "~> #{ENV['RAILS_VERSION']}.0"
gem "cucumber", "~> #{ENV['CUKES_VERSION']}"
# use ENV vars, with default value as fallback for local setup
ruby (ENV['RUBY_VERSION'] || '3.2.2')
gem "rails", "~> #{ENV['RAILS_VERSION'] || '7.0'}.0"
gem "cucumber", "~> #{ENV['CUKES_VERSION'] || '7.0'}"
gem "cucumber-rails"
gem 'fabrication', github: 'mathieujobin/fabrication', ref: '923cf6fcefd0566b1d6be7bd2f685b89388f4800'

0 comments on commit 8bba5e3

Please sign in to comment.