aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2010-06-16 19:24:18 +0200
committerXavier Noria <fxn@hashref.com>2010-06-16 19:28:23 +0200
commit145fbdff67b5fca4d7162b1699d51539399066be (patch)
tree187105d39d0bfd0ffe97eda0d187dc5dded2ec09 /Gemfile
parent8e56085817e752bb361738ec6ca7362a3398ed77 (diff)
downloadrails-145fbdff67b5fca4d7162b1699d51539399066be.tar.gz
rails-145fbdff67b5fca4d7162b1699d51539399066be.tar.bz2
rails-145fbdff67b5fca4d7162b1699d51539399066be.zip
removes the documentation group from the Gemfile, thus making RDoc 2.2 required in dev machines
In order to generate the API with that particular version we need to activate the gem in the Rakefile before rake. Therefore the Rakefile does not honor --without for that group now. Installing rdoc is no big deal anyway.
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile5
1 files changed, 1 insertions, 4 deletions
diff --git a/Gemfile b/Gemfile
index 7a8c5604b0..fe6ef9aa8a 100644
--- a/Gemfile
+++ b/Gemfile
@@ -5,6 +5,7 @@ gem "rails", :path => File.dirname(__FILE__)
gem "rake", ">= 0.8.7"
gem "mocha", ">= 0.9.8"
+gem "rdoc", "2.2"
mri = !defined?(RUBY_ENGINE) || RUBY_ENGINE == "ruby"
if mri && RUBY_VERSION < '1.9'
@@ -44,10 +45,6 @@ elsif RUBY_ENGINE == "jruby"
end
end
-group :documentation do
- gem 'rdoc', '2.2'
-end
-
if ENV['CI']
gem "nokogiri", ">= 1.4.0"