aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew White <andrew.white@unboxed.co>2017-01-04 11:25:28 +0000
committerAndrew White <andrew.white@unboxed.co>2017-01-04 11:25:28 +0000
commit14edc0ad2a9b8655d390c71e9c6e03819a2bb7af (patch)
treec2525525031f09f15251bc640298db6128ea625c
parent9065da85937c1ae6a8b9188a28ac58b4bb9c479e (diff)
downloadrails-14edc0ad2a9b8655d390c71e9c6e03819a2bb7af.tar.gz
rails-14edc0ad2a9b8655d390c71e9c6e03819a2bb7af.tar.bz2
rails-14edc0ad2a9b8655d390c71e9c6e03819a2bb7af.zip
Restrict w3c_validators to less than 1.3
This is because rdoc 3.10 has a dependency on json ~> 1.4 and w3c_validators 1.3.0 requires json ~> 2.0.
-rw-r--r--Gemfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index 73fdc6c42e..41a10f6f77 100644
--- a/Gemfile
+++ b/Gemfile
@@ -55,7 +55,7 @@ group :doc do
# this is our own fork with the fix.
gem 'sdoc', :git => 'https://github.com/fxn/sdoc.git'
gem 'RedCloth', '~> 4.2'
- gem 'w3c_validators'
+ gem 'w3c_validators', '< 1.3'
end
# AS