Skip to content

Commit

Permalink
Tweak Gemfile to allow Rails 'master' branch name
Browse files Browse the repository at this point in the history
  • Loading branch information
yahonda committed Jan 17, 2021
1 parent f8a86f6 commit f586e19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ rails_version = case rails
end

gem 'faker', '~> 2.0'
gem 'sqlite3', ::Gem::Version.new(rails_version) >= ::Gem::Version.new('6-0-stable') ? '~> 1.4.1' : '~> 1.3.3'
gem 'sqlite3', ::Gem::Version.new(rails_version == 'master' ? '6.2.0.alpha' : rails_version) >= ::Gem::Version.new('6-0-stable') ? '~> 1.4.1' : '~> 1.3.3'
gem 'pg', '~> 1.0'
gem 'pry', '~> 0.12.2'
gem 'byebug'
Expand Down

0 comments on commit f586e19

Please sign in to comment.