diff --git a/Gemfile b/Gemfile index bd21667..72789a4 100644 --- a/Gemfile +++ b/Gemfile @@ -5,20 +5,20 @@ source 'https://rubygems.org' ruby ::File.read('.ruby-version').split('-').last # Application Dependencies -gem 'activesupport' +gem 'activesupport', '>= 6.1.7.5' gem 'puma' gem 'sinatra', require: false gem 'sinatra-contrib' gem 'sinatra-flash' # Settings -gem 'config' +gem 'config', '>= 2.1.0' # Datastore Dependencies -gem 'actionpack', require: false -gem 'activerecord' +gem 'actionpack', '>= 6.1.7.5', require: false +gem 'activerecord', '>= 6.1.7.5' gem 'pg' -gem 'standalone_migrations' +gem 'standalone_migrations', '>= 6.1.0' # Rake & Job Dependencies gem 'bundler-audit' @@ -27,7 +27,7 @@ gem 'rake' group :development, :test do gem 'capybara' - gem 'factory_bot' + gem 'factory_bot', '>= 5.1.0' gem 'faker' gem 'rack-test' gem 'racksh' @@ -35,6 +35,6 @@ group :development, :test do gem 'rspec-json_expectations' gem 'rubocop', require: false gem 'rubocop-performance' - gem 'shoulda' + gem 'shoulda', '>= 4.0.0' gem 'simplecov', require: false end