diff options
author | lamont-granquist <lamont@scriptkiddie.org> | 2013-10-31 16:20:46 -0700 |
---|---|---|
committer | lamont-granquist <lamont@scriptkiddie.org> | 2013-10-31 16:20:46 -0700 |
commit | 7f0b8087f3def589c23e459c3385dbc652490a11 (patch) | |
tree | 128d89288453861378c27443203f3003ac9fe2c5 | |
parent | 3241b1773771c0af5f7636c983631f64943c8f15 (diff) | |
parent | e30e100e2051e666b74fbcc86bc05ce148609953 (diff) | |
download | mixlib-shellout-7f0b8087f3def589c23e459c3385dbc652490a11.tar.gz |
Merge pull request #29 from opscode/lcg/MIXLIB-7
[MIXLIB-7] remove awesome_print
-rw-r--r-- | Gemfile | 1 | ||||
-rw-r--r-- | spec/mixlib/shellout_spec.rb | 1 | ||||
-rw-r--r-- | spec/spec_helper.rb | 2 |
3 files changed, 0 insertions, 4 deletions
@@ -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 } |