Sha256: 8b49ec676b56d841d1b794a084216a603251ef37fbc50f945be08ce8d5eb92ce
Contents?: true
Size: 477 Bytes
Versions: 1
Compression:
Stored size: 477 Bytes
Contents
# encoding: utf-8 # http://wiki.github.com/botanicus/rango/controllers require "rango/controller" module <%= @name.camel_case %> class Application < Rango::Controller # TODO: implement application controller end class ShowCase < Application def index render "index.html" end end <% @controllers.each do |controller| %> class <%= controller.camel_case %> < Application # TODO: implement <%= controller %> controller end <% end %> end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rango-0.1.1 | stubs/app/content/views.rb.rbt |