aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
authorMatthew McEachen <matthew+github@mceachen.org>2011-05-22 16:07:47 -0700
committerMatthew McEachen <matthew+github@mceachen.org>2011-05-22 16:07:47 -0700
commit330fc8c48d91b8909985fd82d7fc3761b1242526 (patch)
treec0186f1ba07916c37481aeea3e1bd740c8737a88 /railties/guides
parente368a3468ff209825a74075afcd4045f85963b66 (diff)
downloadrails-330fc8c48d91b8909985fd82d7fc3761b1242526.tar.gz
rails-330fc8c48d91b8909985fd82d7fc3761b1242526.tar.bz2
rails-330fc8c48d91b8909985fd82d7fc3761b1242526.zip
Following proper naming conventions while referring to Rails, Bundler
Diffstat (limited to 'railties/guides')
-rw-r--r--railties/guides/source/plugins.textile8
1 files changed, 4 insertions, 4 deletions
diff --git a/railties/guides/source/plugins.textile b/railties/guides/source/plugins.textile
index 842b538bc8..b71cd0c89d 100644
--- a/railties/guides/source/plugins.textile
+++ b/railties/guides/source/plugins.textile
@@ -25,14 +25,14 @@ endprologue.
h3. Setup
-Before you continue, take a moment to decide if your new plugin will be potentially shared across different rails applications.
+Before you continue, take a moment to decide if your new plugin will be potentially shared across different Rails applications.
* If your plugin is specific to your application, your new plugin will be a _vendored plugin_.
* If you think your plugin may be used across applications, build it as a _gemified plugin_.
h4. Either generate a vendored plugin...
-Use the +rails generate plugin+ command in your rails root directory
+Use the +rails generate plugin+ command in your Rails root directory
to create a new plugin that will live in the +vendor/plugins+
directory. See usage and options by asking for help:
@@ -42,9 +42,9 @@ $ rails generate plugin new --help
h4. Or generate a gemified plugin.
-Writing your rails plugin as a gem, rather than as a vendored plugin,
+Writing your Rails plugin as a gem, rather than as a vendored plugin,
lets you share your plugin across different rails applications using
- rubygems and bundler.
+ RubyGems and Bundler.
Rails 3.1 ships with a +rails plugin new+ command which creates a
skeleton for developing any kind of Rails extension with the ability