simplify console with helpers

This commit is contained in:
Joshua Peek 2008-11-23 15:15:05 -06:00
parent d36158794b
commit d75a234501
2 changed files with 3 additions and 21 deletions

View File

@ -42,6 +42,7 @@ module ActionView #:nodoc:
include FormHelper
include FormOptionsHelper
include FormTagHelper
include JavaScriptHelper
include NumberHelper
include PrototypeHelper
include RecordIdentificationHelper

View File

@ -1,24 +1,5 @@
class Module
def include_all_modules_from(parent_module)
parent_module.constants.each do |const|
mod = parent_module.const_get(const)
if mod.class == Module
send(:include, mod)
include_all_modules_from(mod)
end
end
end
end
def helper(*helper_names)
returning @helper_proxy ||= Object.new do |helper|
helper_names.each { |h| helper.extend "#{h}_helper".classify.constantize }
end
end
class << helper
include_all_modules_from ActionView
def helper
@helper ||= ApplicationController.helpers
end
@controller = ApplicationController.new
helper :application rescue nil