What I''m trying to do is to enumerate all available plugins and then
exclude specific plugins. This allows me to white-label my site and
load the necessary brand via plugin specified in the environment at
run-time. If there''s a better way to accomplish this in Rails 2.1,
I''m all ears.
The following approach in config/environment.rb for enumerating all
the plugins to be loaded worked in Rails 2.0 but fails in Rails 2.1:
config.plugins = config.plugin_locators.map do |locator|
locator.new(Rails::Initializer.new(config)).plugins
end.flatten.map{|p| p.name.to_sym}
Error is:
/usr/local/lib/ruby/gems/1.8/gems/rails-2.1.0/lib/rails/plugin/
locator.rb:81:in `plugins'': wrong argument type Symbol (expected Proc)
(TypeError)
Seems to be failing in the GemLocator#plugins method.
Any thoughts on how to modify this code to work in Rails 2.1? Or is
there a better way to do what I am trying to accomplish?
Thanks.
Michael
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Ruby on Rails: Talk" group.
To post to this group, send email to
rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe from this group, send email to
rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---