Skip to content

Commit 34d16e1

Browse files
committed
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.
1 parent a52b141 commit 34d16e1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ gem "memcache-client", ">= 1.8.5"
2626

2727
platforms :mri_18 do
2828
gem "system_timer"
29+
# ruby-debug requires linecache which depends on require_relative but doesn't explicitly
30+
# declare this in its gemspec
31+
gem "require_relative"
2932
gem "ruby-debug", ">= 0.10.3"
3033
gem "json"
3134
end

0 commit comments

Comments
 (0)