aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/plugin/loader.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/lib/rails/plugin/loader.rb')
-rw-r--r--railties/lib/rails/plugin/loader.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/lib/rails/plugin/loader.rb b/railties/lib/rails/plugin/loader.rb
index e935f9b34b..016bcc6c50 100644
--- a/railties/lib/rails/plugin/loader.rb
+++ b/railties/lib/rails/plugin/loader.rb
@@ -13,7 +13,7 @@ module Rails
def initialize(initializer, directory)
@initializer = initializer
@directory = directory
- @name = File.basename(directory)
+ @name = File.basename(directory).to_sym
end
def load
@@ -126,7 +126,7 @@ module Rails
end
if !explicitly_enabled? && !other_plugin_loader.explicitly_enabled?
- name <=> other_plugin_loader.name
+ name.to_s <=> other_plugin_loader.name.to_s
elsif registered_plugins.include?(:all) && (!explicitly_enabled? || !other_plugin_loader.explicitly_enabled?)
effective_index = explicitly_enabled? ? registered_plugins.index(name) : registered_plugins.index(:all)
other_effective_index = other_plugin_loader.explicitly_enabled? ?
@@ -138,7 +138,7 @@ module Rails
end
else
- name <=> other_plugin_loader.name
+ name.to_s <=> other_plugin_loader.name.to_s
end
end
end