diff options
| author | Geremia Taglialatela <[email protected]> | 2023-05-22 20:13:13 +0200 |
|---|---|---|
| committer | Geremia Taglialatela <[email protected]> | 2023-05-22 20:13:13 +0200 |
| commit | 083c4c6d62011cd88966d608b0c6bb736f300a0c (patch) | |
| tree | b5ceb9b3a32c4130d84c3075966b4033bf32a118 /Rakefile | |
| parent | 6752225bbb8a9eec905ec02a98f1a25a309c404a (diff) | |
| download | caxlsx-083c4c6d62011cd88966d608b0c6bb736f300a0c.tar.gz caxlsx-083c4c6d62011cd88966d608b0c6bb736f300a0c.zip | |
Use Ruby 1.9 hash syntax (non-production code)
Diffstat (limited to 'Rakefile')
| -rw-r--r-- | Rakefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |
