diff --git a/Gemfile b/Gemfile index ab4c9299..5f1215bd 100644 --- a/Gemfile +++ b/Gemfile @@ -3,7 +3,7 @@ source "https://rubygems.org" # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' -gem "rails", "~>7" +gem "rails", "~> 7", ">= 7.1.0" # Use sqlite3 as the database for Active Record # gem 'sqlite3' # Use Puma as the app server @@ -31,7 +31,7 @@ group :development, :test, :gitlabci do gem "capybara" gem "byebug", platform: :mri gem "foreman" - gem "rspec-rails" + gem "rspec-rails", ">= 6.0.4" gem "rspec_junit_formatter" gem "simplecov-cobertura" end @@ -45,10 +45,10 @@ end ## gem "bundler-audit" gem "pg" -gem "devise" # , git: "https://github.com/heartcombo/devise.git" +gem "devise" , ">= 4.9.3" # , git: "https://github.com/heartcombo/devise.git" # gem 'omniauth-facebook' # gem 'omniauth-google-oauth2' -gem "carrierwave" +gem "carrierwave", ">= 2.2.5" gem "carrierwave-imageoptimizer" gem "mini_magick" # transforming images gem "nokogiri" @@ -83,7 +83,7 @@ end ## INTERACTIVITY ## -gem "simple_form" +gem "simple_form", ">= 5.3.0" gem "kramdown" ## @@ -101,7 +101,7 @@ gem "acts-as-taggable-on" gem "act_as_time_as_boolean" gem "workbook", git: "https://github.com/murb/workbook.git", branch: :main gem "nested_form" -gem "paper_trail" # , "11.1.0" +gem "paper_trail" , ">= 15.1.0" # , "11.1.0" gem "paper_trail-association_tracking" gem "keyword_finder" gem "mail", "~> 2.7.0" @@ -112,7 +112,7 @@ gem "exception_notification" gem "zipline" gem "rack-headers_filter" gem "strip_attributes" -gem "omniauth" +gem "omniauth", ">= 2.1.2" gem "omniauth-google-oauth2" gem "omniauth-rails_csrf_protection" gem "omniauth-azure-activedirectory", git: "https://github.com/murb/omniauth-azure-activedirectory.git" @@ -121,7 +121,7 @@ gem "sidekiq-scheduler", ">= 3.1.0" gem "sidekiq-unique-jobs", ">= 7.1.5" # gem "webpacker" -gem "rack-mini-profiler" +gem "rack-mini-profiler", ">= 3.2.0" gem "flamegraph" gem "stackprof" gem "memory_profiler" @@ -130,7 +130,7 @@ group :test, :gitlabci do gem "database_cleaner" gem "simplecov", require: false gem "bullet" - gem "rspec-openapi" + gem "rspec-openapi", ">= 0.10.0" end gem "standard", group: [:development, :test] gem "dotenv-rails", groups: [:development, :test] @@ -141,4 +141,4 @@ gem "omniauth-central_login", git: "https://gitlab.com/murb-org/omniauth-central gem "invisible_captcha" gem "jsbundling-rails", "~> 1.0" gem "pupprb", git: "https://gitlab.com/murb/pupprb.git" -gem "stimulus-rails" +gem "stimulus-rails", ">= 1.3.1"