aboutsummaryrefslogtreecommitdiffstats
path: root/railties/test/fixtures/lib/plugin_builders/tweak_builder.rb
diff options
context:
space:
mode:
authorPrem Sichanugrist <s@sikac.hu>2013-02-24 13:46:27 -0500
committerPrem Sichanugrist <s@sikac.hu>2013-02-24 14:31:08 -0500
commit2da5ea1c9feb4a7b491bd00bd6ffd931b9203da8 (patch)
treeeb549cf5d0ade20f86dca4e1765a8516a81298eb /railties/test/fixtures/lib/plugin_builders/tweak_builder.rb
parent5fc3b87c93edf770ea0d6b52a28ea225183dbfd7 (diff)
downloadrails-2da5ea1c9feb4a7b491bd00bd6ffd931b9203da8.tar.gz
rails-2da5ea1c9feb4a7b491bd00bd6ffd931b9203da8.tar.bz2
rails-2da5ea1c9feb4a7b491bd00bd6ffd931b9203da8.zip
Remove `--builder` option from `rails` command
Ability to use a custom builder by passing `--builder` (or `-b`) has been removed. Consider using application template instead. See this guide for more detail: http://guides.rubyonrails.org/rails_application_templates.html
Diffstat (limited to 'railties/test/fixtures/lib/plugin_builders/tweak_builder.rb')
-rw-r--r--railties/test/fixtures/lib/plugin_builders/tweak_builder.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/railties/test/fixtures/lib/plugin_builders/tweak_builder.rb b/railties/test/fixtures/lib/plugin_builders/tweak_builder.rb
deleted file mode 100644
index 1e801409a4..0000000000
--- a/railties/test/fixtures/lib/plugin_builders/tweak_builder.rb
+++ /dev/null
@@ -1,7 +0,0 @@
-class PluginBuilder < Rails::PluginBuilder
- def gitignore
- create_file ".gitignore", <<-R.strip
-foobar
- R
- end
-end