summaryrefslogtreecommitdiff
path: root/spec/bundler/cli_spec.rb
diff options
context:
space:
mode:
authorSamuel Giddins <segiddins@segiddins.me>2016-07-14 22:20:40 -0500
committerSamuel Giddins <segiddins@segiddins.me>2016-07-20 09:35:41 -0500
commitc476ee2672b506f7f8909cd44ba4111da4c2b5c2 (patch)
treebe3480874093648d116e71976ef869bbebe63112 /spec/bundler/cli_spec.rb
parentaf80780f713f8f798d67d1511c2817871c60f125 (diff)
downloadbundler-c476ee2672b506f7f8909cd44ba4111da4c2b5c2.tar.gz
[RuboCop] Update to 0.41.2
Diffstat (limited to 'spec/bundler/cli_spec.rb')
-rw-r--r--spec/bundler/cli_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/bundler/cli_spec.rb b/spec/bundler/cli_spec.rb
index 2237ee9731..e04902488e 100644
--- a/spec/bundler/cli_spec.rb
+++ b/spec/bundler/cli_spec.rb
@@ -14,7 +14,7 @@ describe "bundle executable" do
end
it "looks for a binary and executes it if it's named bundler-<task>" do
- File.open(tmp("bundler-testtasks"), "w", 0755) do |f|
+ File.open(tmp("bundler-testtasks"), "w", 0o755) do |f|
f.puts "#!/usr/bin/env ruby\nputs 'Hello, world'\n"
end