aboutsummaryrefslogtreecommitdiffstats
path: root/Gemfile
diff options
context:
space:
mode:
authorJon Leighton <j@jonathanleighton.com>2011-06-13 22:18:31 +0100
committerJon Leighton <j@jonathanleighton.com>2011-06-13 22:18:31 +0100
commit954359b9c260f0e1265237c20bb3e4834a11fb9a (patch)
tree47aeeabb08d319b8f32abeb274eb1cc5179854da /Gemfile
parent190677d0f2b9b2e82811fd9c1da504f3b6fe941d (diff)
downloadrails-954359b9c260f0e1265237c20bb3e4834a11fb9a.tar.gz
rails-954359b9c260f0e1265237c20bb3e4834a11fb9a.tar.bz2
rails-954359b9c260f0e1265237c20bb3e4834a11fb9a.zip
Add Gemfile dependency for require_relative on mri18. This is a dependency of linecache which is a dependency of ruby-debug. However, the latest release of linecache (0.45) omits the dependency from its gemspec, causing the build to fail. I have emailed the maintainer so we should remove this when it's fixed upstream.
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile
index f7ea906827..bce1bbe0e2 100644
--- a/Gemfile
+++ b/Gemfile
@@ -26,6 +26,9 @@ gem "memcache-client", ">= 1.8.5"
platforms :mri_18 do
gem "system_timer"
+ # ruby-debug requires linecache which depends on require_relative but doesn't explicitly
+ # declare this in its gemspec
+ gem "require_relative"
gem "ruby-debug", ">= 0.10.3"
gem "json"
end