Skip to content
This repository has been archived by the owner on Apr 14, 2021. It is now read-only.

Update the location of bundler gemspec. #6977

Merged
1 commit merged into from
Feb 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bundler.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ begin
require File.expand_path("../lib/bundler/version", __FILE__)
rescue LoadError
# for Ruby core repository
require File.expand_path("../bundler/version", __FILE__)
require File.expand_path("../version", __FILE__)
end

Gem::Specification.new do |s|
Expand Down
2 changes: 1 addition & 1 deletion spec/support/path.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def root
end

def gemspec
@gemspec ||= root.join(ruby_core? ? "lib/bundler.gemspec" : "bundler.gemspec")
@gemspec ||= root.join(ruby_core? ? "lib/bundler/bundler.gemspec" : "bundler.gemspec")
end

def bindir
Expand Down