mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
simplify console with helpers
This commit is contained in:
parent
d36158794b
commit
d75a234501
2 changed files with 3 additions and 21 deletions
|
@ -42,6 +42,7 @@ module ActionView #:nodoc:
|
|||
include FormHelper
|
||||
include FormOptionsHelper
|
||||
include FormTagHelper
|
||||
include JavaScriptHelper
|
||||
include NumberHelper
|
||||
include PrototypeHelper
|
||||
include RecordIdentificationHelper
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue