diff options
author | rohit <rohit.arondekar@gmail.com> | 2010-06-23 18:22:02 +0530 |
---|---|---|
committer | rohit <rohit.arondekar@gmail.com> | 2010-06-23 18:22:02 +0530 |
commit | 3ac5a5339790212763e0432d5aa243016520aa80 (patch) | |
tree | 77019273e78c8223d592e4bbdc9fe7059ba16bae /railties | |
parent | 9dda440c38bd9878b0aa7ceb854bf4f1beeabd68 (diff) | |
download | rails-3ac5a5339790212763e0432d5aa243016520aa80.tar.gz rails-3ac5a5339790212763e0432d5aa243016520aa80.tar.bz2 rails-3ac5a5339790212763e0432d5aa243016520aa80.zip |
Guides: replace reference to hpricot with nokogiri [#3290 state:resolved]
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/rails_application_templates.textile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/rails_application_templates.textile b/railties/guides/source/rails_application_templates.textile index 1af6f56957..1bf9cfec33 100644 --- a/railties/guides/source/rails_application_templates.textile +++ b/railties/guides/source/rails_application_templates.textile @@ -51,11 +51,11 @@ h4. gem(name, options = {}) Adds a +config.gem+ entry for the supplied gem to the generated application’s +config/environment.rb+. -For example, if your application depends on the gems +bj+ and +hpricot+ : +For example, if your application depends on the gems +bj+ and +nokogiri+ : <ruby> gem "bj" -gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net" +gem "nokogiri" </ruby> Please note that this will NOT install the gems for you. So you may want to run the +rake gems:install+ task too : |