aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib
diff options
context:
space:
mode:
authorPiotr Sarnacki <drogus@gmail.com>2010-10-29 20:06:48 +0200
committerPiotr Sarnacki <drogus@gmail.com>2010-11-02 17:14:52 +0100
commit9cb9713eebd786bd5113470af67b6c81bb57986e (patch)
treec04c6d5d9216367686455d907cf6123d1a9be5d9 /railties/lib
parenta5311ee86bffad3f0bce00babd1ff5d78ec85618 (diff)
downloadrails-9cb9713eebd786bd5113470af67b6c81bb57986e.tar.gz
rails-9cb9713eebd786bd5113470af67b6c81bb57986e.tar.bz2
rails-9cb9713eebd786bd5113470af67b6c81bb57986e.zip
Refactor app and plugin generators to use new Thor API
Diffstat (limited to 'railties/lib')
-rw-r--r--railties/lib/rails/generators/rails/app/app_generator.rb12
-rw-r--r--railties/lib/rails/generators/rails/plugin_new/plugin_new_generator.rb12
2 files changed, 4 insertions, 20 deletions
diff --git a/railties/lib/rails/generators/rails/app/app_generator.rb b/railties/lib/rails/generators/rails/app/app_generator.rb
index ef24cf1e05..e2d2ae71ba 100644
--- a/railties/lib/rails/generators/rails/app/app_generator.rb
+++ b/railties/lib/rails/generators/rails/app/app_generator.rb
@@ -177,9 +177,7 @@ module Rails
end
end
- def create_root
- super
- end
+ public_task :create_root
def create_root_files
build(:readme)
@@ -258,13 +256,7 @@ module Rails
build(:leftovers)
end
- def apply_rails_template
- super
- end
-
- def bundle_if_dev_or_edge
- super
- end
+ public_task :apply_rails_template, :bundle_if_dev_or_edge
protected
diff --git a/railties/lib/rails/generators/rails/plugin_new/plugin_new_generator.rb b/railties/lib/rails/generators/rails/plugin_new/plugin_new_generator.rb
index 7b202344ee..ddc801a0ae 100644
--- a/railties/lib/rails/generators/rails/plugin_new/plugin_new_generator.rb
+++ b/railties/lib/rails/generators/rails/plugin_new/plugin_new_generator.rb
@@ -115,9 +115,7 @@ end
super
end
- def create_root
- super
- end
+ public_task :create_root
def create_root_files
build(:readme)
@@ -168,13 +166,7 @@ end
build(:leftovers)
end
- def apply_rails_template
- super
- end
-
- def bundle_if_dev_or_edge
- super
- end
+ public_task :apply_rails_template, :bundle_if_dev_or_edge
protected