summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-05-05 14:42:06 -0700
committerSamuel E. Giddins <segiddins@segiddins.me>2015-07-16 08:32:46 -0700
commit18632ebd3dd7f8726843f83465af41dcb8a782b2 (patch)
tree282543304890f3e2fbf8d7e40f40be65fcc3e055
parentc301be075798a70c1b72c979e60083b1e4a475fd (diff)
downloadbundler-18632ebd3dd7f8726843f83465af41dcb8a782b2.tar.gz
bundle_ruby is a DEPRECATION
-rwxr-xr-xexe/bundle_ruby4
-rw-r--r--spec/other/bundle_ruby_spec.rb4
2 files changed, 4 insertions, 4 deletions
diff --git a/exe/bundle_ruby b/exe/bundle_ruby
index bd239b4eff..69f7e90d7d 100755
--- a/exe/bundle_ruby
+++ b/exe/bundle_ruby
@@ -41,8 +41,8 @@ module Bundler
end
end
-STDERR.puts "Warning: bundle_ruby is deprecated and will be removed in " \
- "Bundler 2.0.0."
+STDERR.puts "DEPRECATION: bundle_ruby is deprecated and will be removed in " \
+ "Bundler 2.0."
dsl = Bundler::Dsl.new
begin
diff --git a/spec/other/bundle_ruby_spec.rb b/spec/other/bundle_ruby_spec.rb
index 73e37d9696..d3ecbca430 100644
--- a/spec/other/bundle_ruby_spec.rb
+++ b/spec/other/bundle_ruby_spec.rb
@@ -12,8 +12,8 @@ describe "bundle_ruby" do
bundle_ruby
- expect(err).to eq_err("Warning: bundle_ruby is deprecated and will " \
- "be removed in Bundler 2.0.0.")
+ expect(err).to include("DEPRECATION: bundle_ruby is deprecated and will " \
+ "be removed in Bundler 2.0.")
end
end