summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2018-06-26 14:19:59 -0700
committerGitHub <noreply@github.com>2018-06-26 14:19:59 -0700
commit73b8759f8f29933e9bed04d9c5e26dc71defadac (patch)
treef05c50c941d5ea2c6d8173c3337a297d3c8707d2 /Rakefile
parent0cfadddb41abfafcf5bca47ecb2c7760f1b517a4 (diff)
parentcfde9c1490bfbaa9f4fc2bc390955117d1b25b31 (diff)
downloadmixlib-authentication-73b8759f8f29933e9bed04d9c5e26dc71defadac.tar.gz
Merge pull request #40 from chef/lcg/remove-hashrockets
remove hashrocket syntax
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index dfcf8fd..7be508e 100644
--- a/Rakefile
+++ b/Rakefile
@@ -3,7 +3,7 @@ require "rspec/core/rake_task"
RSpec::Core::RakeTask.new(:spec)
-task :default => :spec
+task default: :spec
begin
require "chefstyle"
@@ -15,4 +15,4 @@ rescue LoadError
puts "chefstyle/rubocop is not available."
end
-task :ci => [:style, :spec]
+task ci: [:style, :spec]