Froze rails gems
[depot.git] / vendor / rails / railties / lib / rails_generator / generators / components / controller / templates / controller.rb
diff --git a/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/controller.rb b/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/controller.rb
new file mode 100644 (file)
index 0000000..cda2659
--- /dev/null
@@ -0,0 +1,7 @@
+class <%= class_name %>Controller < ApplicationController
+<% for action in actions -%>
+  def <%= action %>
+  end
+
+<% end -%>
+end