forked from weshatheleopard/rubyXL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
103 lines (87 loc) · 3.17 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
require 'rubygems'
require 'bundler'
begin
Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
warn e.message
warn 'Run `bundle install` to install missing gems'
exit e.status_code
end
require 'juwelier'
Juwelier::Tasks.new do |gem|
# gem is a Gem::Specification... see https://docs.rubygems.org/read/chapter/20 for more options
gem.name = 'rubyXL'
gem.homepage = 'https://github.com/gilt/rubyXL'
gem.license = 'MIT'
gem.summary = %q{rubyXL is a gem which allows the parsing, creation, and manipulation of Microsoft Excel (.xlsx/.xlsm) Documents}
gem.description = %q{rubyXL is a gem which allows the parsing, creation, and manipulation of Microsoft Excel (.xlsx/.xlsm) Documents}
gem.email = '[email protected]'
gem.authors = ['Vivek Bhagwat', 'Wesha']
# gem.required_ruby_version = '>2.1'
# dependencies defined in Gemfile
end
Juwelier::RubygemsDotOrgTasks.new
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
test.libs << 'lib' << 'test'
test.pattern = 'test/**/test_*.rb'
test.verbose = true
test.warning = true
end
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:rspec)
task :default => :rspec
require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : ''
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "rubyXL #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end
desc 'Dump profiling data with stackprof'
task :stackprof do
require 'benchmark'
require 'stackprof'
$LOAD_PATH.unshift File.dirname(__FILE__) + '/lib' # Make Ruby aware of load path
require './lib/rubyXL'
spreadsheets = Dir.glob(File.join('test', 'input', '*.xls?')).sort!
spreadsheets.each { |input|
puts "<<<--- Profiling parsing of #{input}..."
doc = nil
StackProf.run(:mode => :cpu, :interval => 100,
:out => "tmp/stackprof-cpu-parse-#{File.basename(input)}.dump") {
doc = RubyXL::Parser.parse(input)
}
output = File.join('test', 'output', File.basename(input))
puts "--->>> Profiling writing of #{output}..."
StackProf.run(:mode => :cpu, :interval => 100,
:out => "tmp/stackprof-cpu-write-#{File.basename(input)}.dump") {
doc.write(output)
}
}
end
desc 'Dump profiling data with ruby-prof'
task :rubyprof do
require 'benchmark'
require 'ruby-prof'
$LOAD_PATH.unshift File.dirname(__FILE__) + '/lib' # Make Ruby aware of load path
require './lib/rubyXL'
spreadsheets = Dir.glob(File.join('test', 'input', '*.xls?')).sort!
spreadsheets.each { |input|
puts "<<<--- Profiling parsing of #{input}..."
doc = nil
result = RubyProf.profile {
doc = RubyXL::Parser.parse(input)
}
printer = RubyProf::CallStackPrinter.new(result)
File.open("tmp/ruby-prof-parse-#{File.basename(input)}.html", 'w') { |f| printer.print(f, {}) }
output = File.join('test', 'output', File.basename(input))
puts "--->>> Profiling writing of #{output}..."
result = RubyProf.profile {
doc.write(output)
}
printer = RubyProf::CallStackPrinter.new(result)
File.open("tmp/ruby-prof-write-#{File.basename(input)}.html", 'w') { |f| printer.print(f, {}) }
}
end