Sha256: a202c23e60ee172160951ef87e7e53f017886d7c3fd8d6c84ee03ff03cb4c51c
Contents?: true
Size: 354 Bytes
Versions: 4
Compression:
Stored size: 354 Bytes
Contents
class ApplicationController attr_accessor :params def process(action, params) self.params = params.with_indifferent_access send(action) end def redirect_to(path) end def render(template, options = {}) end def item_list_path(item_list) "/item_lists/#{item_list.id}" end def item_lists_path "/item_lists" end end
Version data entries
4 entries across 4 versions & 1 rubygems