summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorJaymala Sinha <jsinha@chef.io>2019-10-10 15:15:44 -0400
committerJaymala Sinha <jsinha@chef.io>2019-10-10 15:15:44 -0400
commita9747fff21cb0f4e9577f773ac5b245ced26ebe2 (patch)
tree33d31c2eabccb8d09077f30a2d415d64343ee59c /Rakefile
parent5460919d0313a53c8eb36aa7c98c9c87431f89ba (diff)
downloadffi-yajl-a9747fff21cb0f4e9577f773ac5b245ced26ebe2.tar.gz
Resolve rubocop failures
Signed-off-by: Jaymala Sinha <jsinha@chef.io>
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index 67fe352..ce105db 100644
--- a/Rakefile
+++ b/Rakefile
@@ -22,7 +22,7 @@ rescue LoadError
end
desc "Build it and ship it"
-task ship: [:clean, :gem] do
+task ship: %i{clean gem} do
sh("git tag #{FFI_Yajl::VERSION}")
sh("git push --tags")
Dir[File.expand_path("../pkg/*.gem", __FILE__)].reverse_each do |built_gem|
@@ -133,7 +133,7 @@ desc "Run all style checks"
task style: ["style:rubocop"]
desc "Run style + spec tests by default on travis"
-task travis: %w{style spec}
+task buildkite: %w{style spec}
desc "Run style + spec tests by default"
task default: %w{compile style spec}