summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2019-11-28 12:28:33 +0100
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-11-28 15:37:24 +0100
commitdc35ae8d6733030a71de73973c8e5cbf9cbba50c (patch)
tree381dd641d7b07826cca7762beefb096bf471a16b
parent4f0a5d27cb9aa1afe734724d61f2889e2f76d62e (diff)
downloadbundler-dc35ae8d6733030a71de73973c8e5cbf9cbba50c.tar.gz
Fix a warning in activation hack snippet
In particular, ``` /path/to/bundler/tmp/1/bundled_app/activation_warning_hack.rb:9: warning: `*' interpreted as argument prefix ```
-rw-r--r--spec/runtime/setup_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/runtime/setup_spec.rb b/spec/runtime/setup_spec.rb
index 24f3803f3c..e4a9dc95cd 100644
--- a/spec/runtime/setup_spec.rb
+++ b/spec/runtime/setup_spec.rb
@@ -1218,7 +1218,7 @@ end
unless #{exemptions.inspect}.include?(name)
warn '-' * 80
warn "activating \#{full_name}"
- warn *caller
+ warn(*caller)
warn '*' * 80
end
bundler_spec_activate