summaryrefslogtreecommitdiffhomepage
path: root/Rakefile
diff options
context:
space:
mode:
authorGeremia Taglialatela <[email protected]>2023-05-22 20:13:13 +0200
committerGeremia Taglialatela <[email protected]>2023-05-22 20:13:13 +0200
commit083c4c6d62011cd88966d608b0c6bb736f300a0c (patch)
treeb5ceb9b3a32c4130d84c3075966b4033bf32a118 /Rakefile
parent6752225bbb8a9eec905ec02a98f1a25a309c404a (diff)
downloadcaxlsx-083c4c6d62011cd88966d608b0c6bb736f300a0c.tar.gz
caxlsx-083c4c6d62011cd88966d608b0c6bb736f300a0c.zip
Use Ruby 1.9 hash syntax (non-production code)
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index ccba7692..8125959f 100644
--- a/Rakefile
+++ b/Rakefile
@@ -2,7 +2,7 @@
require File.expand_path(File.dirname(__FILE__) + '/lib/axlsx/version.rb')
-task :build => :gendoc do
+task build: :gendoc do
system "gem build axlsx.gemspec"
end
@@ -23,8 +23,8 @@ Rake::TestTask.new do |t|
t.warning = true
end
-task :release => :build do
+task release: :build do
system "gem push caxlsx-#{Axlsx::VERSION}.gem"
end
-task :default => :test
+task default: :test