aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2011-12-08 04:56:16 -0800
committerXavier Noria <fxn@hashref.com>2011-12-08 04:57:09 -0800
commit4936fc35a0d00f5ab1a3f2f2c8dfc192da5b5b80 (patch)
tree9c6440e448ef7bd457513d75adf042cb3d4e7020
parent2fe5834ddc1591b09c1620c6f7acea7632d37b13 (diff)
downloadrails-4936fc35a0d00f5ab1a3f2f2c8dfc192da5b5b80.tar.gz
rails-4936fc35a0d00f5ab1a3f2f2c8dfc192da5b5b80.tar.bz2
rails-4936fc35a0d00f5ab1a3f2f2c8dfc192da5b5b80.zip
use our own fork of sdoc while Vijay's fix is not applied to voloko/sdoc
-rw-r--r--Gemfile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index 4c20570398..36fa5d6ff8 100644
--- a/Gemfile
+++ b/Gemfile
@@ -26,7 +26,11 @@ gem "mocha", ">= 0.9.8"
group :doc do
gem "rdoc", "~> 3.4"
- gem "sdoc", "~> 0.3"
+ # The current sdoc cannot generate GitHub links due
+ # to a bug, but the PR that fixes it has been there
+ # for some weeks unapplied. As a temporary solution
+ # this is our own fork with the fix.
+ gem "sdoc", :git => 'git://github.com/fxn/sdoc.git'
gem "RedCloth", "~> 4.2" if RUBY_VERSION < "1.9.3"
gem "w3c_validators"
end