Skip to content

Commit

Permalink
Lock down rspec version.
Browse files Browse the repository at this point in the history
  • Loading branch information
ejholmes authored and hamiltop committed Nov 2, 2023
1 parent 1ed0221 commit 7ff88c2
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
source 'https://rubygems.org'

gemspec
ver = ENV['AR_TEST_VERSION']
ver = ver.dup.chomp if ver

gem 'activerecord', ver
gem 'activesupport', ver

group :test do
gem 'rake'
gem 'sqlite3'
gem 'pry'
gem 'awesome_print'
gem 'database_cleaner'
gem 'rspec', '~> 2.14'
end

0 comments on commit 7ff88c2

Please sign in to comment.