Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ gem 'jwt'
# vips backend is never loaded.
gem 'image_processing'
gem 'mini_magick'
# json 3.0 breaks ActiveSupport::JSON.decode: json 3.0 made JSON.parse
# keyword-only, so Rails' JSON.parse(json, options) positional-hash call
# raises ArgumentError and every session-cookie read fails. Pinned until
# Rails supports json 3.x (https://github.com/codebar/planner/pull/2864).
gem 'json', '~> 2.3'
gem 'mutex_m' # LOCKED: Added because of activesupport 7.0
gem 'nokogiri'
gem 'omniauth'
Expand Down
1 change: 1 addition & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -662,6 +662,7 @@ DEPENDENCIES
image_processing
irb
jquery-rails
json (~> 2.3)
jwt
launchy
letter_opener
Expand Down