Skip to content

Commit

Permalink
Require activesupport in Rakefile
Browse files Browse the repository at this point in the history
The guide says this is needed for cherry-picking just the string
extensions, and without it our specs fail.

Cf: https://guides.rubyonrails.org/active_support_core_extensions.html#loading-grouped-core-extensions
  • Loading branch information
mamhoff committed Feb 1, 2024
1 parent 8fd60c7 commit 57bb91c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ RSpec::Core::RakeTask.new(:spec)

task default: [:test_setup, :spec]

require "active_support"
require "active_support/core_ext/string"

desc "Setup test app"
Expand Down

0 comments on commit 57bb91c

Please sign in to comment.