Sha256: 4c1d024b303fc86829d092ec0a7140cb487f75efd0dbd782dac2bfdea2eef974
Contents?: true
Size: 568 Bytes
Versions: 2
Compression:
Stored size: 568 Bytes
Contents
<% counter = 0 -%> <% controller_modules.each_with_index do |mod, i| -%> <%= " " * i %>module <%= mod %> <% counter = i -%> <% end -%> <% counter = counter == 0 ? 0 : (counter + 1) -%> <%= " " * counter %>class <%= controller_class_name %> < Application <%= " " * counter %> def index <%= " " * counter %> render <%= " " * counter %> end <%= " " * counter %>end <% counter = counter == 0 ? 0 : (counter - 1) -%> <% controller_modules.reverse.each_with_index do |mod, i| -%> <%= " " * counter %>end # <%= mod %> <% counter = counter - 1 -%> <% end -%>
Version data entries
2 entries across 2 versions & 1 rubygems