-
Notifications
You must be signed in to change notification settings - Fork 2
/
Rakefile
201 lines (168 loc) · 3.34 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
require "bundler/gem_tasks"
require 'rake/testtask'
Rake::TestTask.new do |t|
t.pattern = "test/*_test.rb"
end
task :default => [:test]
desc "Gives you 10 random names (5 with default/5 with custom format)"
task :example do
require 'usernamegen'
instance = Usernamegen.new
5.times { puts instance.one }
instance = Usernamegen.new {|a| a.join("-").downcase }
puts instance.some(5)
end
desc "Gives you ALL names"
task :all_names do
require 'usernamegen'
Usernamegen.new.all.each{|n| puts n }
end
desc "Run performance benchmarks with benchmark-ips tests"
task :benchmark do
require 'usernamegen'
require 'benchmark'
require 'benchmark/ips'
# initial load
instance = nil
Benchmark.benchmark do |x|
x.report("initial load") { instance = Usernamegen.new }
end
# misc
Benchmark.ips do |x|
x.time = 5
x.warmup = 2
# loading files (cached since we loaded already once)
x.report("::new") do |times|
i = 0
while i < times
Usernamegen.new
i += 1
end
end
end ; puts
# one
Benchmark.ips do |x|
x.time = 5
x.warmup = 2
x.report("::one") do |times|
i = 0
while i < times
Usernamegen.one
i += 1
end
end
x.report("#one") do |times|
i = 0
while i < times
instance.one
i += 1
end
end
x.compare!
end ; puts
# instance compare
Benchmark.ips do |x|
x.time = 5
x.warmup = 2
x.report("#one") do |times|
i = 0
while i < times
instance.one
i += 1
end
end
x.report("#some(1)") do |times|
i = 0
while i < times
instance.some(1)
i += 1
end
end
x.report("#some(10)") do |times|
i = 0
while i < times
instance.some(10)
i += 1
end
end
x.report("#all") do |times|
i = 0
while i < times
instance.all
i += 1
end
end
x.report("#all_for_thing") do |times|
i = 0
while i < times
instance.all_for_thing("foo")
i += 1
end
end
x.report("#all_for_desc") do |times|
i = 0
while i < times
instance.all_for_desc("bar")
i += 1
end
end
x.compare!
end ; puts
end
desc "test benchmark (for while developing)"
task :testbench do
require 'usernamegen'
require 'benchmark'
require 'benchmark/ips'
# initial load
Benchmark.ips do |x|
x.time = 5
x.warmup = 2
instance = Usernamegen.new
x.report("#one") do |times|
i = 0
while i < times
instance.one
i += 1
end
end
x.report("#some(1)") do |times|
i = 0
while i < times
instance.some(1)
i += 1
end
end
x.report("#some(10)") do |times|
i = 0
while i < times
instance.some(10)
i += 1
end
end
x.compare!
end ; puts
end
desc "test benchmark (for while developing)"
task :testbench do
require 'usernamegen'
require 'benchmark'
require 'benchmark/ips'
# initial load
instance = nil
Benchmark.benchmark do |x|
x.report("initial load") { instance = Usernamegen.new }
end
Benchmark.ips do |x|
x.time = 5
x.warmup = 2
x.report("???") do |times|
i = 0
while i < times
###
i += 1
end
end
x.compare!
end
end