diff options
author | Andre Arko <andre@arko.net> | 2015-10-06 19:48:17 -0700 |
---|---|---|
committer | Andre Arko <andre@arko.net> | 2015-10-06 19:48:17 -0700 |
commit | 475512bdce376d18c4ff053eb6c19a31d9e45021 (patch) | |
tree | 0a94e5c230d2413fa50dc3f75effb7014564be7a /spec/support/helpers.rb | |
parent | 42e55b011f9007ea8ccb88ae3767226912b5622a (diff) | |
download | bundler-475512bdce376d18c4ff053eb6c19a31d9e45021.tar.gz |
appease rubocop
Diffstat (limited to 'spec/support/helpers.rb')
-rw-r--r-- | spec/support/helpers.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/helpers.rb b/spec/support/helpers.rb index e06befc60e..4f7190edb2 100644 --- a/spec/support/helpers.rb +++ b/spec/support/helpers.rb @@ -176,7 +176,7 @@ module Spec def lockfile(*args) if args.empty? - File.open("Gemfile.lock", "r"){|f| f.read } + File.open("Gemfile.lock", "r") {|f| f.read } else create_file("Gemfile.lock", *args) end |