Last active
November 29, 2017 07:04
-
-
Save indirect/e84b36fc854409916a569e53e2756deb to your computer and use it in GitHub Desktop.
Bundler repro case for #6072
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Gem::Specification.new do |s| | |
s.name = "actionpack" | |
s.version = "5.1.4" | |
s.summary = "" | |
s.description = "" | |
s.author = "David Heinemeier Hansson" | |
s.add_dependency "rack", "~> 2.0" | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'bundler/inline' | |
gemfile(true) do | |
source "https://rubygems.org" | |
gem "rails", path: "." | |
end | |
require 'rake' | |
puts Rake::VERSION |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Gem::Specification.new do |s| | |
s.name = "rails" | |
s.version = "5.1.4" | |
s.summary = "" | |
s.description = "" | |
s.author = "David Heinemeier Hansson" | |
s.add_dependency "actionpack", "5.1.4" | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
ruby inline.rb && ruby inline.rb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment