diff --git a/Gemfile b/Gemfile index 4d125ab..760941f 100644 --- a/Gemfile +++ b/Gemfile @@ -2,31 +2,31 @@ source 'https://rubygems.org' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' -gem 'rails', '~> 5.0.0', '>= 5.0.0.1' +gem 'rails', '~> 7.1.0' # Use postgresql as the database for Active Record gem 'pg', '~> 0.18' # Use Puma as the app server gem 'puma', '~> 4.3', '>= 4.3.9' # Use SCSS for stylesheets -gem 'sass-rails', '~> 5.0' +gem 'sass-rails', '~> 6.0', '>= 6.0.0' # Use Uglifier as compressor for JavaScript assets gem 'uglifier', '>= 1.3.0' # Use CoffeeScript for .coffee assets and views -gem 'coffee-rails', '~> 4.2' +gem 'coffee-rails', '~> 4.2', '>= 4.2.2' # See https://github.com/rails/execjs#readme for more supported runtimes # gem 'therubyracer', platforms: :ruby # Use jquery as the JavaScript library -gem 'jquery-rails' +gem 'jquery-rails', '>= 4.2.2' # Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder -gem 'jbuilder', '~> 2.5' +gem 'jbuilder', '~> 2.6', '>= 2.6.4' gem 'figaro' gem 'faraday' -gem "omniauth-google-oauth2" +gem "omniauth-google-oauth2", ">= 0.5.0" gem 'rails-rename', '~> 1.0.0' gem 'geocoder' gem 'simplecov', :require => false, :group => :test -gem 'simple_form' +gem 'simple_form', '>= 4.0.0' # Use Redis adapter to run Action Cable in production # gem 'redis', '~> 3.0' # Use ActiveModel has_secure_password @@ -38,10 +38,10 @@ gem 'simple_form' group :development, :test do # Call 'byebug' anywhere in the code to stop execution and get a debugger console gem 'byebug', platform: :mri - gem 'rspec-rails' - gem 'capybara' + gem 'rspec-rails', '>= 3.6.0' + gem 'capybara', '>= 2.9.0' gem 'launchy' - gem 'shoulda-matchers' + gem 'shoulda-matchers', '>= 3.1.2' gem 'database_cleaner' gem 'pry-rails' gem 'vcr' @@ -52,11 +52,11 @@ end group :development do # Access an IRB console on exception pages or by using <%= console %> anywhere in the code. - gem 'web-console' - gem 'listen', '~> 3.0.5' + gem 'web-console', '>= 3.4.0' + gem 'listen', '~> 3.1.0' # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring gem 'spring' - gem 'spring-watcher-listen', '~> 2.0.0' + gem 'spring-watcher-listen', '~> 2.0.1' gem 'spring-commands-rspec' end