From af2d212b63d5af09044d30e3dfbaec8b31f26fd7 Mon Sep 17 00:00:00 2001 From: aditya-kapoor Date: Tue, 14 May 2013 00:22:59 +0530 Subject: Added documentation for Rails::Generators::NamedBase.template --- railties/lib/rails/generators/named_base.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'railties') diff --git a/railties/lib/rails/generators/named_base.rb b/railties/lib/rails/generators/named_base.rb index d891ba1215..fbb747970d 100644 --- a/railties/lib/rails/generators/named_base.rb +++ b/railties/lib/rails/generators/named_base.rb @@ -18,6 +18,10 @@ module Rails parse_attributes! if respond_to?(:attributes) end + # Defines the template that would be used for the migration file. + # The source defines the source template file that would be used in creating the migration + # The args is an array containing any other options and the name of the file which would be saved on the filesystem + no_tasks do def template(source, *args, &block) inside_template do -- cgit v1.2.3 From f8a3dda6ce268ac428a8624d788bf16dc4264d55 Mon Sep 17 00:00:00 2001 From: Prathamesh Sonpatki Date: Sat, 18 May 2013 19:22:46 +0530 Subject: Fxied some typos --- railties/CHANGELOG.md | 2 +- railties/lib/rails/tasks.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'railties') diff --git a/railties/CHANGELOG.md b/railties/CHANGELOG.md index 04cdbec428..d11b0b7e85 100644 --- a/railties/CHANGELOG.md +++ b/railties/CHANGELOG.md @@ -4,7 +4,7 @@ *Arun Agrawal* * Rails::Railtie no longer forces the Rails::Configurable module on everything - that subclassess it. Instead, the methods from Rails::Configurable have been + that subclasses it. Instead, the methods from Rails::Configurable have been moved to class methods in Railtie and the Railtie has been made abstract. *John Wang* diff --git a/railties/lib/rails/tasks.rb b/railties/lib/rails/tasks.rb index 9807000578..142af2d792 100644 --- a/railties/lib/rails/tasks.rb +++ b/railties/lib/rails/tasks.rb @@ -1,6 +1,6 @@ $VERBOSE = nil -# Load Rails rakefile extensions +# Load Rails Rakefile extensions %w( annotations documentation -- cgit v1.2.3 From 7f24d3d6956a7775771302d143e3b09de681d12f Mon Sep 17 00:00:00 2001 From: Vijay Dev Date: Sun, 19 May 2013 21:32:17 +0530 Subject: copy edits[ci skip] --- railties/lib/rails/generators/named_base.rb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'railties') diff --git a/railties/lib/rails/generators/named_base.rb b/railties/lib/rails/generators/named_base.rb index fbb747970d..e712c747b0 100644 --- a/railties/lib/rails/generators/named_base.rb +++ b/railties/lib/rails/generators/named_base.rb @@ -19,9 +19,7 @@ module Rails end # Defines the template that would be used for the migration file. - # The source defines the source template file that would be used in creating the migration - # The args is an array containing any other options and the name of the file which would be saved on the filesystem - + # The arguments include the source template file, the migration filename etc. no_tasks do def template(source, *args, &block) inside_template do -- cgit v1.2.3