Skip to content

Commit

Permalink
removes the documentation group from the Gemfile, thus making RDoc 2.…
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
fxn committed Jun 16, 2010
1 parent 8e56085 commit 145fbdf
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions Gemfile
Expand Up @@ -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'
Expand Down Expand Up @@ -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"

Expand Down

0 comments on commit 145fbdf

Please sign in to comment.