diff options
author | Xavier Noria <fxn@hashref.com> | 2011-01-12 21:15:57 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2011-01-12 21:15:57 +0100 |
commit | 5bc98c9510a369a22b856cbe952d640f3825bb5c (patch) | |
tree | c4d3bb79ca09fc1358fe6f30d445871621ff210d /Gemfile | |
parent | 1f28d1011e320849cd9e18c1685c0ceff46f8475 (diff) | |
download | rails-5bc98c9510a369a22b856cbe952d640f3825bb5c.tar.gz rails-5bc98c9510a369a22b856cbe952d640f3825bb5c.tar.bz2 rails-5bc98c9510a369a22b856cbe952d640f3825bb5c.zip |
defines a :doc group in the project's Rakefile, just for the sake of clarity
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -12,9 +12,12 @@ gem "rack", :git => "git://github.com/rack/rack.git" gem "rake", ">= 0.8.7" gem "mocha", ">= 0.9.8" -gem "rdoc", "~> 3.4" -gem "horo", "= 1.0.3" -gem "RedCloth", "~> 4.2" + +group :doc do + gem "rdoc", "~> 3.4" + gem "horo", "= 1.0.3" + gem "RedCloth", "~> 4.2" +end # for perf tests gem "faker" |