Skip to content

Instantly share code, notes, and snippets.

@indirect
Last active November 29, 2017 07:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save indirect/e84b36fc854409916a569e53e2756deb to your computer and use it in GitHub Desktop.
Save indirect/e84b36fc854409916a569e53e2756deb to your computer and use it in GitHub Desktop.
Bundler repro case for #6072
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
require 'bundler/inline'
gemfile(true) do
source "https://rubygems.org"
gem "rails", path: "."
end
require 'rake'
puts Rake::VERSION
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
#!/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