aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/rails/controller/controller_generator.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/lib/generators/rails/controller/controller_generator.rb')
-rw-r--r--railties/lib/generators/rails/controller/controller_generator.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/railties/lib/generators/rails/controller/controller_generator.rb b/railties/lib/generators/rails/controller/controller_generator.rb
deleted file mode 100644
index 91470be833..0000000000
--- a/railties/lib/generators/rails/controller/controller_generator.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-module Rails
- module Generators
- class ControllerGenerator < NamedBase
- argument :actions, :type => :array, :default => [], :banner => "action action"
- check_class_collision :suffix => "Controller"
-
- def create_controller_files
- template 'controller.rb', File.join('app/controllers', class_path, "#{file_name}_controller.rb")
- end
-
- hook_for :template_engine, :test_framework, :helper
- end
- end
-end