lib/cream/configure/rails.rb in cream-0.6.0 vs lib/cream/configure/rails.rb in cream-0.6.1

- old
+ new

@@ -5,20 +5,18 @@ # extend action_controller with methods from some modules extend_rails :controller do extend_from_module Cream, :role extend_from_module Cream::Controller, :ability - extend_from_module Cream::Helper, :role, :local_host, :auth_label - extend_from_module Cream::Link, :session, :registration, :rest, :session + extend_from_module Cream::Helper, :role, :host, :auth_label end # extend action_view with methods from some modules extend_rails :view do extend_from_module Cream::View, :role, :host, :user_action_menu extend_from_module Cream::Helper, :role, :auth_label end after :initialize do - puts "Rails app initialized" require_all File.dirname(__FILE__) + '/after_init' end end