summaryrefslogtreecommitdiff
path: root/spec/support/matchers.rb
diff options
context:
space:
mode:
authorCarl Lerche <carllerche@mac.com>2010-01-26 11:23:36 -0800
committerCarl Lerche <carllerche@mac.com>2010-01-26 11:23:51 -0800
commit152a50a4aff32cc1c10bedd14d9ea822da4f3eef (patch)
tree196c7b97eaf6f3189084969b89e3ad7b2ddaeb22 /spec/support/matchers.rb
parent63e4af6bd86041ef6c7eebebd7670b2b39b20043 (diff)
downloadbundler-152a50a4aff32cc1c10bedd14d9ea822da4f3eef.tar.gz
Rename gemfile back to bundler
Diffstat (limited to 'spec/support/matchers.rb')
-rw-r--r--spec/support/matchers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/matchers.rb b/spec/support/matchers.rb
index 5a8d9fdd3b..ae145aede6 100644
--- a/spec/support/matchers.rb
+++ b/spec/support/matchers.rb
@@ -2,7 +2,7 @@ module Spec
module Matchers
def have_dep(*args)
simple_matcher "have dependency" do |given, matcher|
- dep = Gemfile::Dependency.new(*args)
+ dep = Bundler::Dependency.new(*args)
# given.length == args.length / 2
given.length == 1 && given.all? { |d| d == dep }