vendor/rails/railties/lib/console_with_helpers.rb in radiant-0.7.2 vs vendor/rails/railties/lib/console_with_helpers.rb in radiant-0.8.0
- old
+ new
@@ -1,26 +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
+def helper
+ @helper ||= ApplicationController.helpers
end
-def helper(*helper_names)
- returning @helper_proxy ||= Object.new do |helper|
- helper_names.each { |h| helper.extend "#{h}_helper".classify.constantize }
- end
-end
-
-require_dependency 'application'
-
-class << helper
- include_all_modules_from ActionView
-end
-
@controller = ApplicationController.new
-helper :application rescue nil