Skip to content

Commit

Permalink
Add missing require to active_storage.rb
Browse files Browse the repository at this point in the history
Since b21f50d, requiring active_storage
on its own has failed with the following error:

    activestorage/lib/active_storage.rb:55:in `<module:ActiveStorage>': undefined method `minutes' for 5:Integer (NoMethodError)
  • Loading branch information
eugeneius committed Feb 20, 2019
1 parent 0f70b02 commit 817ffc0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions activestorage/lib/active_storage.rb
Expand Up @@ -26,6 +26,7 @@
require "active_record"
require "active_support"
require "active_support/rails"
require "active_support/core_ext/numeric/time"

require "active_storage/version"
require "active_storage/errors"
Expand Down

0 comments on commit 817ffc0

Please sign in to comment.