Skip to content

Commit da755ab

Browse files
committed
gemfile should return Pathname to follow Bundler.default_gemfile
1 parent 24d9e93 commit da755ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/spring/configuration.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class << self
66

77
def gemfile
88
if /\s1.9.[0-9]/ === Bundler.ruby_scope.gsub(/[\/\s]+/,'')
9-
ENV["BUNDLE_GEMFILE"] || "Gemfile"
9+
Pathname.new(ENV["BUNDLE_GEMFILE"] || "Gemfile").expand_path
1010
else
1111
Bundler.default_gemfile
1212
end

0 commit comments

Comments
 (0)