summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2013-10-31 16:19:49 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2013-10-31 16:19:49 -0700
commite30e100e2051e666b74fbcc86bc05ce148609953 (patch)
tree128d89288453861378c27443203f3003ac9fe2c5
parent3241b1773771c0af5f7636c983631f64943c8f15 (diff)
downloadmixlib-shellout-e30e100e2051e666b74fbcc86bc05ce148609953.tar.gz
[MIXLIB-7] remove awesome_print
-rw-r--r--Gemfile1
-rw-r--r--spec/mixlib/shellout_spec.rb1
-rw-r--r--spec/spec_helper.rb2
3 files changed, 0 insertions, 4 deletions
diff --git a/Gemfile b/Gemfile
index 4514e31..b1dd8e0 100644
--- a/Gemfile
+++ b/Gemfile
@@ -4,7 +4,6 @@ gemspec :name => "mixlib-shellout"
group(:test) do
gem "rspec_junit_formatter"
- gem 'awesome_print'
gem 'rake'
end
diff --git a/spec/mixlib/shellout_spec.rb b/spec/mixlib/shellout_spec.rb
index 23d9a13..084e1b2 100644
--- a/spec/mixlib/shellout_spec.rb
+++ b/spec/mixlib/shellout_spec.rb
@@ -508,7 +508,6 @@ describe Mixlib::ShellOut do
end
context 'when not using a batch file' do
- let(:watch) { lambda { |a| ap a } }
let(:cmd) { "#{executable_file_name} #{script_name}" }
let(:executable_file_name) { "\"#{dir}/Ruby Parser.exe\"".tap(&make_executable!) }
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 8d2b7c9..9d51c5e 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -7,8 +7,6 @@ require 'tempfile'
require 'timeout'
-WATCH = lambda { |x| ap x } unless defined?(WATCH)
-
# Load everything from spec/support
# Do not change the gsub.
Dir["spec/support/**/*.rb"].map { |f| f.gsub(%r{.rb$}, '') }.each { |f| require f }