summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2016-09-29 14:32:08 -0700
committerThom May <thom@chef.io>2016-10-07 11:12:29 +0100
commit9efca630e084e93fb1ac5eb9c9f04b74d81f4ed7 (patch)
tree82e5956c20f95d32e9025152c422e313965eb4d2 /Rakefile
parentad54419ab0f194c1d89ee8f3065a7a1f053ce6f2 (diff)
downloadmixlib-shellout-9efca630e084e93fb1ac5eb9c9f04b74d81f4ed7.tar.gz
Resolve most chefstyle warnings
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index bb393d6..dbd6f4f 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,5 +1,5 @@
require 'bundler'
-require 'rspec/core/rake_task'
+require "rspec/core/rake_task"
Bundler::GemHelper.install_tasks
@@ -10,7 +10,7 @@ RuboCop::RakeTask.new(:style)
desc "Run all specs in spec directory"
RSpec::Core::RakeTask.new(:spec) do |t|
- t.pattern = FileList['spec/**/*_spec.rb']
+ t.pattern = FileList["spec/**/*_spec.rb"]
end
task default: [:style, :spec]