Sha256: 4209fb84c030f049962f31090f0670b847fca3263455dcd4dd1eb75f525a8e0c

Contents?: true

Size: 487 Bytes

Versions: 1

Compression:

Stored size: 487 Bytes

Contents

# encoding: utf-8

require "rango/controller"

class <%= @name.camel_case %>::Application < Rango::Controller
  # TODO: implement application controller
end

class <%= @name.camel_case %>::ShowCase < <%= @name.camel_case %>::Application
  def index
    render "index.html"
  end
end

<% @controllers.each do |controller| %>
class <%= "#{@name.camel_case}::#{controller.camel_case}" %> < <%= @name.camel_case %>::Application
  # TODO: implement <%= controller %> controller
end

<% end %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rango-0.0.6 stubs/app/content/views.rb.rbt