aboutsummaryrefslogtreecommitdiffstats
path: root/activestorage/lib
diff options
context:
space:
mode:
authorDino Maric <dino.onex@gmail.com>2017-08-10 20:02:29 +0200
committerRafael França <rafaelmfranca@gmail.com>2017-08-10 14:02:29 -0400
commita3f7407e7c0bdfafda4c574e12a68e9cbbef82c5 (patch)
tree33a99e253661e83a2f3ff30985fffc2e5d95204f /activestorage/lib
parent3ffc77a9fb7902acacc600a897fda3107f2ff303 (diff)
downloadrails-a3f7407e7c0bdfafda4c574e12a68e9cbbef82c5.tar.gz
rails-a3f7407e7c0bdfafda4c574e12a68e9cbbef82c5.tar.bz2
rails-a3f7407e7c0bdfafda4c574e12a68e9cbbef82c5.zip
Isolate ActiveStorage namespaces (#30095)
* Isolate ActiveStorage namespaces * Rename migrations task [Rafael Mendonça França + Dino Maric]
Diffstat (limited to 'activestorage/lib')
-rw-r--r--activestorage/lib/active_storage/engine.rb2
-rw-r--r--activestorage/lib/tasks/activestorage.rake2
2 files changed, 3 insertions, 1 deletions
diff --git a/activestorage/lib/active_storage/engine.rb b/activestorage/lib/active_storage/engine.rb
index d5bc70fc0c..a5562b32d3 100644
--- a/activestorage/lib/active_storage/engine.rb
+++ b/activestorage/lib/active_storage/engine.rb
@@ -5,6 +5,8 @@ require "active_storage"
module ActiveStorage
class Engine < Rails::Engine # :nodoc:
+ isolate_namespace ActiveStorage
+
config.active_storage = ActiveSupport::OrderedOptions.new
config.eager_load_namespaces << ActiveStorage
diff --git a/activestorage/lib/tasks/activestorage.rake b/activestorage/lib/tasks/activestorage.rake
index d9e240b141..7a573be596 100644
--- a/activestorage/lib/tasks/activestorage.rake
+++ b/activestorage/lib/tasks/activestorage.rake
@@ -1,6 +1,6 @@
namespace :activestorage do
desc "Copy over the migration needed to the application"
task install: :environment do
- Rake::Task["active_storage_engine:install:migrations"].invoke
+ Rake::Task["active_storage:install:migrations"].invoke
end
end