Skip to content

Commit

Permalink
Update some dependencies for compatibility with ruby 3
Browse files Browse the repository at this point in the history
  • Loading branch information
Naturseptime committed Feb 14, 2022
1 parent e8f38bf commit 4df746a
Show file tree
Hide file tree
Showing 3 changed files with 120 additions and 104 deletions.
7 changes: 4 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

# Ruby interpreter version: Enforce Ruby 2 because Ruby 3 breaks many third-party modules
ruby '>= 2.5.0', '< 3.0.0'
# Ruby interpreter version
ruby '>= 2.5.0'

# MYSQL database adapter
gem 'mysql2'
Expand All @@ -14,7 +14,7 @@ gem 'pundit', '~> 2.1.0'
# Pundit Implications to handle permission implications
gem 'pundit_implications', '~> 0.1.0'
# Sorcery for Authentification
gem 'sorcery', '~> 0.15.0'
gem 'sorcery', '~> 0.16.0'
# awesome_print for Object Rendering
gem 'awesome_print', '~> 1.8.0'
# pagy for Paging
Expand Down Expand Up @@ -70,6 +70,7 @@ group :development do
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'irb', require: false
gem 'rdoc', require: false
end

group :test do
Expand Down
Loading

0 comments on commit 4df746a

Please sign in to comment.