Skip to content

Commit

Permalink
Fix sqlite3 gem version
Browse files Browse the repository at this point in the history
  • Loading branch information
bogdan committed Aug 14, 2024
1 parent c2419ec commit 16ac3ce
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@ source "https://rubygems.org"
gemspec

group :development do
gem "rails", "~> #{ENV['TEST_RAILS_VERSION']}" if ENV["TEST_RAILS_VERSION"]
rails_version = ENV['TEST_RAILS_VERSION']
gem "rails", "~> #{rails_version}" if rails_version
gem "bump"

gem "pry-byebug"

gem "rspec"
gem "nokogiri" # used to test html output

gem "sqlite3", platform: :mri
gem "sqlite3", '~> 1.4.0'
gem "sequel"
gem "activerecord"

Expand Down

0 comments on commit 16ac3ce

Please sign in to comment.