aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler.rb
diff options
context:
space:
mode:
authorTim Moore <tmoore@incrementalism.net>2014-02-15 12:01:38 +1100
committerTim Moore <tmoore@incrementalism.net>2014-02-15 12:01:38 +1100
commitfe86617502c96da1001b1b8d1079236d6af00d1c (patch)
tree43ded80dc0c51b3f5309a1ae6cd0427d312ee255 /lib/bundler.rb
parente7e1889b0ae6390ac2591b89fbd7082c4e4eb5c7 (diff)
downloadbundler-fe86617502c96da1001b1b8d1079236d6af00d1c.tar.gz
Fix typo lock_gems -> locked_gems.
Fixes #2880.
Diffstat (limited to 'lib/bundler.rb')
-rw-r--r--lib/bundler.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler.rb b/lib/bundler.rb
index d54e6643..eef79b3c 100644
--- a/lib/bundler.rb
+++ b/lib/bundler.rb
@@ -158,7 +158,7 @@ module Bundler
return @locked_gems if defined?(@locked_gems)
if Bundler.default_lockfile.exist?
lock = Bundler.read_file(Bundler.default_lockfile)
- @lock_gems = LockfileParser.new(lock)
+ @locked_gems = LockfileParser.new(lock)
else
@locked_gems = nil
end