diff options
| author | Randy Morgan <[email protected]> | 2012-04-18 19:56:12 +0900 |
|---|---|---|
| committer | Randy Morgan <[email protected]> | 2012-04-18 19:56:12 +0900 |
| commit | 34353824cbcaae07cd5a0ce23fe815fd39111d72 (patch) | |
| tree | 7fe0bf66a7e32851f36d6dcba12543008f5a3d1c /Rakefile | |
| parent | c618d733c2371e0f39c001245e204453e26c5799 (diff) | |
| download | caxlsx-34353824cbcaae07cd5a0ce23fe815fd39111d72.tar.gz caxlsx-34353824cbcaae07cd5a0ce23fe815fd39111d72.zip | |
add benchmark task to rakefile
Diffstat (limited to 'Rakefile')
| -rw-r--r-- | Rakefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -4,11 +4,15 @@ task :build => :gendoc do system "gem build axlsx.gemspec" end -task :gendoc do +task :benchmark do + require File.expand_path(File.dirname(__FILE__) + '/test/benchmark.rb') +end + +task :gendoc do system "yardoc" end -task :test do +task :test do require 'rake/testtask' Rake::TestTask.new do |t| t.libs << 'test' |
