Skip to content

Commit

Permalink
Merge pull request #241 from joyofrails/fix/addressable
Browse files Browse the repository at this point in the history
Add addressable to Gemfile for production
  • Loading branch information
rossta authored Oct 20, 2024
2 parents a4d03b4 + d4a11d2 commit 5088c0b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ gem "warden" # General Rack Authentication Framework [https://github.com/wardenc
gem "postmark-rails" # Postmark Rails gem [https://github.com/ActiveCampaign/postmark-rails]
gem "scout_apm" # Scout APM Ruby Agent [https://scoutapm.com]
gem "rails_admin" # RailsAdmin is a Rails engine that provides an easy-to-use interface for managing your data [https://github.com/railsadminteam/rails_admin]
gem "addressable" # Addressable is an alternative implementation to URI [https://github.com/sporkmonger/addressable]

# Rendering
gem "image_processing" # Use Active Storage variants [https://guides.rubyonrails.org/active_storage_overview.html#transforming-images]
Expand Down
1 change: 1 addition & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -575,6 +575,7 @@ PLATFORMS
x86_64-linux

DEPENDENCIES
addressable
aws-sdk-s3
bcrypt (~> 3.1.7)
bootsnap
Expand Down
2 changes: 1 addition & 1 deletion app/models/gravatar.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

require "addressable"
require "addressable/template"

class Gravatar
# Gravatar URI template
Expand Down

0 comments on commit 5088c0b

Please sign in to comment.