aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/erb/controller/controller_generator.rb
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-10-11 01:48:37 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-10-11 02:05:25 +0530
commite40f515a75a67f49ca70a6ea8f0a7d5d7ae1bfea (patch)
treee23e15d2a5d4b154feee87156a6c89a77ee75925 /railties/lib/rails/generators/erb/controller/controller_generator.rb
parent2441160c05f16c28ab466105de8d0c4474b76ddd (diff)
downloadrails-e40f515a75a67f49ca70a6ea8f0a7d5d7ae1bfea.tar.gz
rails-e40f515a75a67f49ca70a6ea8f0a7d5d7ae1bfea.tar.bz2
rails-e40f515a75a67f49ca70a6ea8f0a7d5d7ae1bfea.zip
Fixing build failures
Build failed with an error "invalid multibyte char (US-ASCII)" in these files. Apparently, some UTF-8 char disguised as whitespace causes this. Thanks @rafaelfranca
Diffstat (limited to 'railties/lib/rails/generators/erb/controller/controller_generator.rb')
-rw-r--r--railties/lib/rails/generators/erb/controller/controller_generator.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/railties/lib/rails/generators/erb/controller/controller_generator.rb b/railties/lib/rails/generators/erb/controller/controller_generator.rb
index e14cb09ff7..89e6361f93 100644
--- a/railties/lib/rails/generators/erb/controller/controller_generator.rb
+++ b/railties/lib/rails/generators/erb/controller/controller_generator.rb
@@ -1,8 +1,8 @@
require 'rails/generators/erb'
-module Erb # :nodoc:
- module Generators # :nodoc:
- class ControllerGenerator < Base # :nodoc:
+module Erb # :nodoc:
+ module Generators # :nodoc:
+ class ControllerGenerator < Base # :nodoc:
argument :actions, :type => :array, :default => [], :banner => "action action"
def copy_view_files