Activity
Dennis Hackethal revised idea #307.
4 months ago · ‘Hiccdown Development Notes’If so, there might be a way to bind them to the `view_context`. Or I could definitely pass the `view_context` explicitly as the firstparameter.parameter:↵ ↵ So instead of↵ ↵ ```ruby↵ @helper_module.instance_method(@action_name).bind_call(view_context)↵ ```↵ ↵ I would do↵ ↵ ```ruby↵ @helper_module.send(@action_name, view_context)↵ ```↵ ↵ And the parameter list of each Hiccdown method would start accordingly:↵ ↵ ```ruby↵ module ProductsHelper↵ def self.index vc #, …↵ # …↵ end↵ end↵ ```