viiite 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (113) hide show
  1. data/CHANGELOG.md +70 -0
  2. data/Gemfile +2 -9
  3. data/Gemfile.lock +11 -32
  4. data/README.md +42 -123
  5. data/examples/bench_attr_vs_method-1.8.7.jpeg +0 -0
  6. data/examples/bench_attr_vs_method-1.9.3.jpeg +0 -0
  7. data/examples/bench_attr_vs_method.rb +18 -0
  8. data/examples/bench_iteration.rb +2 -4
  9. data/examples/bench_sort.rb +2 -7
  10. data/lib/viiite.rb +40 -18
  11. data/lib/viiite/bdb.rb +28 -0
  12. data/lib/viiite/bdb/cached.rb +63 -0
  13. data/lib/viiite/bdb/immediate.rb +46 -0
  14. data/lib/viiite/bdb/utils.rb +16 -0
  15. data/lib/viiite/benchmark.rb +35 -0
  16. data/lib/viiite/benchmark/runner.rb +50 -0
  17. data/lib/viiite/command.rb +33 -2
  18. data/lib/viiite/command/commons.rb +22 -0
  19. data/lib/viiite/command/help.rb +4 -5
  20. data/lib/viiite/command/plot.rb +44 -44
  21. data/lib/viiite/command/plot/to_gnuplot.rb +65 -0
  22. data/lib/viiite/command/{graph_style.rash → plot/to_gnuplot_graph.rash} +0 -0
  23. data/lib/viiite/command/{serie_style.rash → plot/to_gnuplot_serie.rash} +0 -0
  24. data/lib/viiite/command/plot/to_highcharts.rb +38 -0
  25. data/lib/viiite/command/plot/to_highcharts_graph.rb +29 -0
  26. data/lib/viiite/command/plot/to_text.rb +30 -0
  27. data/lib/viiite/command/report.rb +32 -10
  28. data/lib/viiite/command/run.rb +30 -7
  29. data/lib/viiite/errors.rb +5 -0
  30. data/lib/viiite/loader.rb +2 -2
  31. data/lib/viiite/tms.rb +21 -31
  32. data/lib/viiite/version.rb +5 -5
  33. data/spec/fixtures/bdb/Array/bench_sort.rb +7 -0
  34. data/spec/fixtures/{bench_iteration.rb → bdb/bench_iteration.rb} +2 -4
  35. data/spec/fixtures/command/bench_iteration.rb +3 -0
  36. data/spec/fixtures/saved/Array/bench_sort.rash +12 -0
  37. data/spec/fixtures/saved/bench_iteration.rash +18 -0
  38. data/spec/integration/plot/plot_1.cmd +1 -0
  39. data/spec/integration/plot/plot_1.stdout +64 -0
  40. data/spec/integration/plot/plot_2.cmd +1 -0
  41. data/spec/integration/plot/plot_2.stdout +37 -0
  42. data/spec/integration/plot/plot_3.cmd +1 -0
  43. data/spec/integration/plot/plot_3.stdout +64 -0
  44. data/spec/integration/plot/plot_4.cmd +1 -0
  45. data/spec/integration/plot/plot_4.stdout +1 -0
  46. data/spec/integration/report/viiite_report_1.cmd +1 -1
  47. data/spec/integration/report/viiite_report_1.stdout +7 -7
  48. data/spec/integration/report/viiite_report_2.cmd +1 -1
  49. data/spec/integration/report/viiite_report_2.stdout +22 -10
  50. data/spec/integration/report/viiite_report_3.cmd +1 -1
  51. data/spec/integration/report/viiite_report_3.stdout +46 -18
  52. data/spec/integration/report/viiite_report_4.cmd +1 -1
  53. data/spec/integration/report/viiite_report_4.stdout +34 -22
  54. data/spec/integration/report/viiite_report_5.cmd +1 -0
  55. data/spec/integration/report/viiite_report_5.stdout +7 -0
  56. data/spec/integration/report/viiite_report_6.cmd +1 -0
  57. data/spec/integration/report/viiite_report_6.stdout +7 -0
  58. data/spec/integration/report/viiite_report_7.cmd +1 -0
  59. data/spec/integration/report/viiite_report_7.stdout +7 -0
  60. data/spec/integration/report/viiite_report_8.cmd +1 -0
  61. data/spec/integration/report/viiite_report_8.stdout +16 -0
  62. data/spec/integration/report/viiite_report_9.cmd +1 -0
  63. data/spec/integration/report/viiite_report_9.stdout +88 -0
  64. data/spec/integration/test_command.rb +19 -23
  65. data/spec/integration/viiite/viiite_help.stdout +6 -0
  66. data/spec/spec_helper.rb +11 -17
  67. data/spec/unit/bdb/cached/test_dataset.rb +68 -0
  68. data/spec/unit/bdb/immediate/test_benchmark.rb +31 -0
  69. data/spec/unit/bdb/immediate/test_dataset.rb +31 -0
  70. data/spec/unit/bdb/immediate/test_enumerable.rb +20 -0
  71. data/spec/unit/bdb/immediate/test_pattern.rb +25 -0
  72. data/spec/unit/bdb/test_new.rb +44 -0
  73. data/spec/unit/bdb/utils/test_bench_file.rb +24 -0
  74. data/spec/unit/bdb/utils/test_replace_extension.rb +21 -0
  75. data/spec/unit/benchmark/bench_add.rb +3 -0
  76. data/spec/unit/benchmark/test_new.rb +28 -0
  77. data/spec/unit/command/commons/existing.rash +1 -0
  78. data/spec/unit/command/commons/test_single_source.rb +64 -0
  79. data/spec/unit/{formatter/plot → command/plot/gnuplot_utils}/test_to_data.rb +4 -4
  80. data/spec/unit/{formatter/plot → command/plot/gnuplot_utils}/test_to_dataset.rb +5 -5
  81. data/spec/unit/{formatter/plot → command/plot/gnuplot_utils}/test_to_plot.rb +4 -4
  82. data/spec/unit/command/test_run.rb +25 -12
  83. data/spec/unit/{test_runner.rb → test_benchmark.rb} +30 -11
  84. data/spec/unit/test_viiite.rb +17 -4
  85. data/spec/unit/tms/test_attributes.rb +11 -0
  86. data/spec/unit/tms/test_coerce.rb +11 -23
  87. data/spec/unit/tms/test_conversions.rb +23 -0
  88. data/spec/unit/tms/test_operations.rb +22 -0
  89. data/tasks/clean.rake +1 -1
  90. data/tasks/debug_mail.rake +13 -13
  91. data/tasks/gem.rake +13 -13
  92. data/tasks/integration_test.rake +3 -3
  93. data/tasks/spec_test.rake +9 -9
  94. data/tasks/unit_test.rake +9 -10
  95. data/tasks/yard.rake +13 -13
  96. data/viiite.gemspec +26 -29
  97. data/viiite.noespec +4 -7
  98. metadata +335 -235
  99. data/examples/bench_sort.eps +0 -816
  100. data/examples/bench_sort.rash +0 -100
  101. data/examples/raw.rash +0 -6
  102. data/lib/viiite/formatter.rb +0 -5
  103. data/lib/viiite/formatter/plot.rb +0 -38
  104. data/lib/viiite/runner.rb +0 -59
  105. data/lib/viiite/viiite_file.rb +0 -20
  106. data/spec/integration/raw_data.rash +0 -6
  107. data/spec/unit/tms/test_divide.rb +0 -26
  108. data/spec/unit/tms/test_minus.rb +0 -26
  109. data/spec/unit/tms/test_plus.rb +0 -34
  110. data/spec/unit/tms/test_times.rb +0 -26
  111. data/spec/unit/tms/test_to_a.rb +0 -11
  112. data/spec/unit/tms/test_to_ruby_literal.rb +0 -11
  113. data/spec/unit/tms/test_to_s.rb +0 -11
@@ -2,7 +2,7 @@
2
2
  # Run 'noe show-spec' and 'noe help show-spec' for additional details.
3
3
  template-info:
4
4
  name: "ruby"
5
- version: 1.5.0
5
+ version: 1.5.1
6
6
  manifest:
7
7
  spec/test___lower__.rb:
8
8
  ignore: true
@@ -12,7 +12,7 @@ variables:
12
12
  upper:
13
13
  Viiite
14
14
  version:
15
- 0.1.0
15
+ 0.2.0
16
16
  summary: |-
17
17
  An alternative to Benchmark
18
18
  description: |-
@@ -27,13 +27,10 @@ variables:
27
27
  dependencies:
28
28
  - {name: rake, version: "~> 0.9.2", groups: [test, release]}
29
29
  - {name: rspec, version: "~> 2.6.0", groups: [test, release]}
30
- - {name: yard, version: "~> 0.7.2", groups: [doc ]}
31
- - {name: bluecloth, version: "~> 2.1.0", groups: [doc ]}
32
- - {name: jekyll, version: "~> 0.11.0", groups: [doc ]}
33
30
  - {name: wlang, version: "~> 0.10.2", groups: [release ]}
34
- - {name: alf, version: "~> 0.10.0", groups: [runtime ]}
35
- - {name: quickl, version: "~> 0.4.0", groups: [runtime ]}
31
+ - {name: alf, version: "~> 0.10.1", groups: [runtime ]}
36
32
  - {name: gnuplot, version: "~> 2.3.6", groups: [runtime ]}
33
+ - {name: json, version: ">= 0", groups: [runtime ]}
37
34
  rake_tasks:
38
35
  spec_test:
39
36
  pattern: spec/unit/**/test_*.rb
metadata CHANGED
@@ -1,297 +1,397 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: viiite
3
- version: !ruby/object:Gem::Version
4
- prerelease: false
5
- segments:
6
- - 0
7
- - 1
8
- - 0
9
- version: 0.1.0
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ prerelease:
10
6
  platform: ruby
11
- authors:
7
+ authors:
12
8
  - Bernard Lambeau
13
9
  autorequire:
14
10
  bindir: bin
15
11
  cert_chain: []
16
-
17
- date: 2011-08-20 00:00:00 +02:00
18
- default_executable:
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
12
+ date: 2011-09-06 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
21
15
  name: rake
22
- requirement: &id001 !ruby/object:Gem::Requirement
16
+ requirement: &2160424360 !ruby/object:Gem::Requirement
23
17
  none: false
24
- requirements:
18
+ requirements:
25
19
  - - ~>
26
- - !ruby/object:Gem::Version
27
- segments:
28
- - 0
29
- - 9
30
- - 2
20
+ - !ruby/object:Gem::Version
31
21
  version: 0.9.2
32
22
  type: :development
33
23
  prerelease: false
34
- version_requirements: *id001
35
- - !ruby/object:Gem::Dependency
24
+ version_requirements: *2160424360
25
+ - !ruby/object:Gem::Dependency
36
26
  name: rspec
37
- requirement: &id002 !ruby/object:Gem::Requirement
27
+ requirement: &2160423660 !ruby/object:Gem::Requirement
38
28
  none: false
39
- requirements:
29
+ requirements:
40
30
  - - ~>
41
- - !ruby/object:Gem::Version
42
- segments:
43
- - 2
44
- - 6
45
- - 0
31
+ - !ruby/object:Gem::Version
46
32
  version: 2.6.0
47
33
  type: :development
48
34
  prerelease: false
49
- version_requirements: *id002
50
- - !ruby/object:Gem::Dependency
51
- name: yard
52
- requirement: &id003 !ruby/object:Gem::Requirement
53
- none: false
54
- requirements:
55
- - - ~>
56
- - !ruby/object:Gem::Version
57
- segments:
58
- - 0
59
- - 7
60
- - 2
61
- version: 0.7.2
62
- type: :development
63
- prerelease: false
64
- version_requirements: *id003
65
- - !ruby/object:Gem::Dependency
66
- name: bluecloth
67
- requirement: &id004 !ruby/object:Gem::Requirement
68
- none: false
69
- requirements:
70
- - - ~>
71
- - !ruby/object:Gem::Version
72
- segments:
73
- - 2
74
- - 1
75
- - 0
76
- version: 2.1.0
77
- type: :development
78
- prerelease: false
79
- version_requirements: *id004
80
- - !ruby/object:Gem::Dependency
81
- name: jekyll
82
- requirement: &id005 !ruby/object:Gem::Requirement
83
- none: false
84
- requirements:
85
- - - ~>
86
- - !ruby/object:Gem::Version
87
- segments:
88
- - 0
89
- - 11
90
- - 0
91
- version: 0.11.0
92
- type: :development
93
- prerelease: false
94
- version_requirements: *id005
95
- - !ruby/object:Gem::Dependency
35
+ version_requirements: *2160423660
36
+ - !ruby/object:Gem::Dependency
96
37
  name: wlang
97
- requirement: &id006 !ruby/object:Gem::Requirement
38
+ requirement: &2160423100 !ruby/object:Gem::Requirement
98
39
  none: false
99
- requirements:
40
+ requirements:
100
41
  - - ~>
101
- - !ruby/object:Gem::Version
102
- segments:
103
- - 0
104
- - 10
105
- - 2
42
+ - !ruby/object:Gem::Version
106
43
  version: 0.10.2
107
44
  type: :development
108
45
  prerelease: false
109
- version_requirements: *id006
110
- - !ruby/object:Gem::Dependency
46
+ version_requirements: *2160423100
47
+ - !ruby/object:Gem::Dependency
111
48
  name: alf
112
- requirement: &id007 !ruby/object:Gem::Requirement
49
+ requirement: &2160422540 !ruby/object:Gem::Requirement
113
50
  none: false
114
- requirements:
51
+ requirements:
115
52
  - - ~>
116
- - !ruby/object:Gem::Version
117
- segments:
118
- - 0
119
- - 10
120
- - 0
121
- version: 0.10.0
53
+ - !ruby/object:Gem::Version
54
+ version: 0.10.1
122
55
  type: :runtime
123
56
  prerelease: false
124
- version_requirements: *id007
125
- - !ruby/object:Gem::Dependency
126
- name: quickl
127
- requirement: &id008 !ruby/object:Gem::Requirement
57
+ version_requirements: *2160422540
58
+ - !ruby/object:Gem::Dependency
59
+ name: gnuplot
60
+ requirement: &2160422040 !ruby/object:Gem::Requirement
128
61
  none: false
129
- requirements:
62
+ requirements:
130
63
  - - ~>
131
- - !ruby/object:Gem::Version
132
- segments:
133
- - 0
134
- - 4
135
- - 0
136
- version: 0.4.0
64
+ - !ruby/object:Gem::Version
65
+ version: 2.3.6
137
66
  type: :runtime
138
67
  prerelease: false
139
- version_requirements: *id008
140
- - !ruby/object:Gem::Dependency
141
- name: gnuplot
142
- requirement: &id009 !ruby/object:Gem::Requirement
68
+ version_requirements: *2160422040
69
+ - !ruby/object:Gem::Dependency
70
+ name: json
71
+ requirement: &2160421560 !ruby/object:Gem::Requirement
143
72
  none: false
144
- requirements:
145
- - - ~>
146
- - !ruby/object:Gem::Version
147
- segments:
148
- - 2
149
- - 3
150
- - 6
151
- version: 2.3.6
73
+ requirements:
74
+ - - ! '>='
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
152
77
  type: :runtime
153
78
  prerelease: false
154
- version_requirements: *id009
155
- description: |-
156
- Viiite brings tools to benchmark and analyze the complexity of your algorithms.
157
- It has been designed as an alternative to Benchmark that let your benchmarks
158
- evolve smoothly from simple measures to more complex infrastructures.
159
- email:
79
+ version_requirements: *2160421560
80
+ description: ! "Viiite brings tools to benchmark and analyze the complexity of your
81
+ algorithms. \nIt has been designed as an alternative to Benchmark that let your
82
+ benchmarks \nevolve smoothly from simple measures to more complex infrastructures."
83
+ email:
160
84
  - blambeau@gmail.com
161
- executables:
85
+ executables:
162
86
  - viiite
163
87
  extensions: []
164
-
165
- extra_rdoc_files:
88
+ extra_rdoc_files:
166
89
  - README.md
167
90
  - CHANGELOG.md
168
91
  - LICENCE.md
169
- files:
170
- - viiite.gemspec
171
- - viiite.noespec
172
- - CHANGELOG.md
173
- - Gemfile
174
- - Gemfile.lock
175
- - bin/viiite
176
- - examples/bench_iteration.rb
177
- - examples/bench_sort.rb
178
- - examples/bench_sort.rash
179
- - examples/raw.rash
180
- - examples/bench_sort.eps
181
- - lib/viiite/version.rb
182
- - lib/viiite/tms.rb
183
- - lib/viiite/command.rb
184
- - lib/viiite/formatter.rb
185
- - lib/viiite/formatter/plot.rb
186
- - lib/viiite/loader.rb
187
- - lib/viiite/runner.rb
188
- - lib/viiite/command/help.rb
189
- - lib/viiite/command/plot.rb
190
- - lib/viiite/command/run.rb
191
- - lib/viiite/command/report.rb
192
- - lib/viiite/command/graph_style.rash
193
- - lib/viiite/command/serie_style.rash
194
- - lib/viiite/viiite_file.rb
195
- - lib/viiite.rb
196
- - LICENCE.md
197
- - Manifest.txt
198
- - Rakefile
199
- - README.md
200
- - spec/spec_helper.rb
201
- - spec/integration/viiite/viiite_help.cmd
202
- - spec/integration/viiite/viiite_help.stdout
203
- - spec/integration/report/viiite_report_2.cmd
204
- - spec/integration/report/viiite_report_3.cmd
205
- - spec/integration/report/viiite_report_1.stdout
206
- - spec/integration/report/viiite_report_4.cmd
207
- - spec/integration/report/viiite_report_2.stdout
208
- - spec/integration/report/viiite_report_3.stdout
209
- - spec/integration/report/viiite_report_1.cmd
210
- - spec/integration/report/viiite_report_4.stdout
211
- - spec/integration/test_command.rb
212
- - spec/integration/raw_data.rash
213
- - spec/fixtures/bench_iteration.rb
214
- - spec/unit/formatter/plot/test_to_data.rb
215
- - spec/unit/formatter/plot/test_to_dataset.rb
216
- - spec/unit/formatter/plot/test_to_plot.rb
217
- - spec/unit/test_runner.rb
218
- - spec/unit/test_viiite.rb
219
- - spec/unit/tms/test_coerce.rb
220
- - spec/unit/tms/test_divide.rb
221
- - spec/unit/tms/test_minus.rb
222
- - spec/unit/tms/test_plus.rb
223
- - spec/unit/tms/test_times.rb
224
- - spec/unit/tms/test_to_a.rb
225
- - spec/unit/tms/test_to_ruby_literal.rb
226
- - spec/unit/tms/test_to_s.rb
227
- - spec/unit/command/test_run.rb
228
- - tasks/clean.rake
229
- - tasks/debug_mail.rake
230
- - tasks/debug_mail.txt
231
- - tasks/gem.rake
232
- - tasks/spec_test.rake
233
- - tasks/unit_test.rake
234
- - tasks/yard.rake
235
- - tasks/integration_test.rake
236
- has_rdoc: true
92
+ files:
93
+ - !binary |-
94
+ dmlpaXRlLmdlbXNwZWM=
95
+ - !binary |-
96
+ dmlpaXRlLm5vZXNwZWM=
97
+ - !binary |-
98
+ Q0hBTkdFTE9HLm1k
99
+ - !binary |-
100
+ R2VtZmlsZQ==
101
+ - !binary |-
102
+ R2VtZmlsZS5sb2Nr
103
+ - !binary |-
104
+ YmluL3ZpaWl0ZQ==
105
+ - !binary |-
106
+ ZXhhbXBsZXMvYmVuY2hfYXR0cl92c19tZXRob2QtMS44LjcuanBlZw==
107
+ - !binary |-
108
+ ZXhhbXBsZXMvYmVuY2hfYXR0cl92c19tZXRob2QtMS45LjMuanBlZw==
109
+ - !binary |-
110
+ ZXhhbXBsZXMvYmVuY2hfYXR0cl92c19tZXRob2QucmI=
111
+ - !binary |-
112
+ ZXhhbXBsZXMvYmVuY2hfaXRlcmF0aW9uLnJi
113
+ - !binary |-
114
+ ZXhhbXBsZXMvYmVuY2hfc29ydC5yYg==
115
+ - !binary |-
116
+ bGliL3ZpaWl0ZS9iZGIvY2FjaGVkLnJi
117
+ - !binary |-
118
+ bGliL3ZpaWl0ZS9iZGIvaW1tZWRpYXRlLnJi
119
+ - !binary |-
120
+ bGliL3ZpaWl0ZS9iZGIvdXRpbHMucmI=
121
+ - !binary |-
122
+ bGliL3ZpaWl0ZS9iZGIucmI=
123
+ - !binary |-
124
+ bGliL3ZpaWl0ZS9iZW5jaG1hcmsvcnVubmVyLnJi
125
+ - !binary |-
126
+ bGliL3ZpaWl0ZS9iZW5jaG1hcmsucmI=
127
+ - !binary |-
128
+ bGliL3ZpaWl0ZS9jb21tYW5kL2NvbW1vbnMucmI=
129
+ - !binary |-
130
+ bGliL3ZpaWl0ZS9jb21tYW5kL2hlbHAucmI=
131
+ - !binary |-
132
+ bGliL3ZpaWl0ZS9jb21tYW5kL3Bsb3QvdG9fZ251cGxvdC5yYg==
133
+ - !binary |-
134
+ bGliL3ZpaWl0ZS9jb21tYW5kL3Bsb3QvdG9fZ251cGxvdF9ncmFwaC5yYXNo
135
+ - !binary |-
136
+ bGliL3ZpaWl0ZS9jb21tYW5kL3Bsb3QvdG9fZ251cGxvdF9zZXJpZS5yYXNo
137
+ - !binary |-
138
+ bGliL3ZpaWl0ZS9jb21tYW5kL3Bsb3QvdG9faGlnaGNoYXJ0cy5yYg==
139
+ - !binary |-
140
+ bGliL3ZpaWl0ZS9jb21tYW5kL3Bsb3QvdG9faGlnaGNoYXJ0c19ncmFwaC5y
141
+ Yg==
142
+ - !binary |-
143
+ bGliL3ZpaWl0ZS9jb21tYW5kL3Bsb3QvdG9fdGV4dC5yYg==
144
+ - !binary |-
145
+ bGliL3ZpaWl0ZS9jb21tYW5kL3Bsb3QucmI=
146
+ - !binary |-
147
+ bGliL3ZpaWl0ZS9jb21tYW5kL3JlcG9ydC5yYg==
148
+ - !binary |-
149
+ bGliL3ZpaWl0ZS9jb21tYW5kL3J1bi5yYg==
150
+ - !binary |-
151
+ bGliL3ZpaWl0ZS9jb21tYW5kLnJi
152
+ - !binary |-
153
+ bGliL3ZpaWl0ZS9lcnJvcnMucmI=
154
+ - !binary |-
155
+ bGliL3ZpaWl0ZS9sb2FkZXIucmI=
156
+ - !binary |-
157
+ bGliL3ZpaWl0ZS90bXMucmI=
158
+ - !binary |-
159
+ bGliL3ZpaWl0ZS92ZXJzaW9uLnJi
160
+ - !binary |-
161
+ bGliL3ZpaWl0ZS5yYg==
162
+ - !binary |-
163
+ TElDRU5DRS5tZA==
164
+ - !binary |-
165
+ TWFuaWZlc3QudHh0
166
+ - !binary |-
167
+ UmFrZWZpbGU=
168
+ - !binary |-
169
+ UkVBRE1FLm1k
170
+ - !binary |-
171
+ c3BlYy9maXh0dXJlcy9iZGIvQXJyYXkvYmVuY2hfc29ydC5yYg==
172
+ - !binary |-
173
+ c3BlYy9maXh0dXJlcy9iZGIvYmVuY2hfaXRlcmF0aW9uLnJi
174
+ - !binary |-
175
+ c3BlYy9maXh0dXJlcy9jb21tYW5kL2JlbmNoX2l0ZXJhdGlvbi5yYg==
176
+ - !binary |-
177
+ c3BlYy9maXh0dXJlcy9zYXZlZC9BcnJheS9iZW5jaF9zb3J0LnJhc2g=
178
+ - !binary |-
179
+ c3BlYy9maXh0dXJlcy9zYXZlZC9iZW5jaF9pdGVyYXRpb24ucmFzaA==
180
+ - !binary |-
181
+ c3BlYy9pbnRlZ3JhdGlvbi9wbG90L3Bsb3RfMS5jbWQ=
182
+ - !binary |-
183
+ c3BlYy9pbnRlZ3JhdGlvbi9wbG90L3Bsb3RfMS5zdGRvdXQ=
184
+ - !binary |-
185
+ c3BlYy9pbnRlZ3JhdGlvbi9wbG90L3Bsb3RfMi5jbWQ=
186
+ - !binary |-
187
+ c3BlYy9pbnRlZ3JhdGlvbi9wbG90L3Bsb3RfMi5zdGRvdXQ=
188
+ - !binary |-
189
+ c3BlYy9pbnRlZ3JhdGlvbi9wbG90L3Bsb3RfMy5jbWQ=
190
+ - !binary |-
191
+ c3BlYy9pbnRlZ3JhdGlvbi9wbG90L3Bsb3RfMy5zdGRvdXQ=
192
+ - !binary |-
193
+ c3BlYy9pbnRlZ3JhdGlvbi9wbG90L3Bsb3RfNC5jbWQ=
194
+ - !binary |-
195
+ c3BlYy9pbnRlZ3JhdGlvbi9wbG90L3Bsb3RfNC5zdGRvdXQ=
196
+ - !binary |-
197
+ c3BlYy9pbnRlZ3JhdGlvbi9yZXBvcnQvdmlpaXRlX3JlcG9ydF8xLmNtZA==
198
+ - !binary |-
199
+ c3BlYy9pbnRlZ3JhdGlvbi9yZXBvcnQvdmlpaXRlX3JlcG9ydF8xLnN0ZG91
200
+ dA==
201
+ - !binary |-
202
+ c3BlYy9pbnRlZ3JhdGlvbi9yZXBvcnQvdmlpaXRlX3JlcG9ydF8yLmNtZA==
203
+ - !binary |-
204
+ c3BlYy9pbnRlZ3JhdGlvbi9yZXBvcnQvdmlpaXRlX3JlcG9ydF8yLnN0ZG91
205
+ dA==
206
+ - !binary |-
207
+ c3BlYy9pbnRlZ3JhdGlvbi9yZXBvcnQvdmlpaXRlX3JlcG9ydF8zLmNtZA==
208
+ - !binary |-
209
+ c3BlYy9pbnRlZ3JhdGlvbi9yZXBvcnQvdmlpaXRlX3JlcG9ydF8zLnN0ZG91
210
+ dA==
211
+ - !binary |-
212
+ c3BlYy9pbnRlZ3JhdGlvbi9yZXBvcnQvdmlpaXRlX3JlcG9ydF80LmNtZA==
213
+ - !binary |-
214
+ c3BlYy9pbnRlZ3JhdGlvbi9yZXBvcnQvdmlpaXRlX3JlcG9ydF80LnN0ZG91
215
+ dA==
216
+ - !binary |-
217
+ c3BlYy9pbnRlZ3JhdGlvbi9yZXBvcnQvdmlpaXRlX3JlcG9ydF81LmNtZA==
218
+ - !binary |-
219
+ c3BlYy9pbnRlZ3JhdGlvbi9yZXBvcnQvdmlpaXRlX3JlcG9ydF81LnN0ZG91
220
+ dA==
221
+ - !binary |-
222
+ c3BlYy9pbnRlZ3JhdGlvbi9yZXBvcnQvdmlpaXRlX3JlcG9ydF82LmNtZA==
223
+ - !binary |-
224
+ c3BlYy9pbnRlZ3JhdGlvbi9yZXBvcnQvdmlpaXRlX3JlcG9ydF82LnN0ZG91
225
+ dA==
226
+ - !binary |-
227
+ c3BlYy9pbnRlZ3JhdGlvbi9yZXBvcnQvdmlpaXRlX3JlcG9ydF83LmNtZA==
228
+ - !binary |-
229
+ c3BlYy9pbnRlZ3JhdGlvbi9yZXBvcnQvdmlpaXRlX3JlcG9ydF83LnN0ZG91
230
+ dA==
231
+ - !binary |-
232
+ c3BlYy9pbnRlZ3JhdGlvbi9yZXBvcnQvdmlpaXRlX3JlcG9ydF84LmNtZA==
233
+ - !binary |-
234
+ c3BlYy9pbnRlZ3JhdGlvbi9yZXBvcnQvdmlpaXRlX3JlcG9ydF84LnN0ZG91
235
+ dA==
236
+ - !binary |-
237
+ c3BlYy9pbnRlZ3JhdGlvbi9yZXBvcnQvdmlpaXRlX3JlcG9ydF85LmNtZA==
238
+ - !binary |-
239
+ c3BlYy9pbnRlZ3JhdGlvbi9yZXBvcnQvdmlpaXRlX3JlcG9ydF85LnN0ZG91
240
+ dA==
241
+ - !binary |-
242
+ c3BlYy9pbnRlZ3JhdGlvbi90ZXN0X2NvbW1hbmQucmI=
243
+ - !binary |-
244
+ c3BlYy9pbnRlZ3JhdGlvbi92aWlpdGUvdmlpaXRlX2hlbHAuY21k
245
+ - !binary |-
246
+ c3BlYy9pbnRlZ3JhdGlvbi92aWlpdGUvdmlpaXRlX2hlbHAuc3Rkb3V0
247
+ - !binary |-
248
+ c3BlYy9zcGVjX2hlbHBlci5yYg==
249
+ - !binary |-
250
+ c3BlYy91bml0L2JkYi9jYWNoZWQvdGVzdF9kYXRhc2V0LnJi
251
+ - !binary |-
252
+ c3BlYy91bml0L2JkYi9pbW1lZGlhdGUvdGVzdF9iZW5jaG1hcmsucmI=
253
+ - !binary |-
254
+ c3BlYy91bml0L2JkYi9pbW1lZGlhdGUvdGVzdF9kYXRhc2V0LnJi
255
+ - !binary |-
256
+ c3BlYy91bml0L2JkYi9pbW1lZGlhdGUvdGVzdF9lbnVtZXJhYmxlLnJi
257
+ - !binary |-
258
+ c3BlYy91bml0L2JkYi9pbW1lZGlhdGUvdGVzdF9wYXR0ZXJuLnJi
259
+ - !binary |-
260
+ c3BlYy91bml0L2JkYi90ZXN0X25ldy5yYg==
261
+ - !binary |-
262
+ c3BlYy91bml0L2JkYi91dGlscy90ZXN0X2JlbmNoX2ZpbGUucmI=
263
+ - !binary |-
264
+ c3BlYy91bml0L2JkYi91dGlscy90ZXN0X3JlcGxhY2VfZXh0ZW5zaW9uLnJi
265
+ - !binary |-
266
+ c3BlYy91bml0L2JlbmNobWFyay9iZW5jaF9hZGQucmI=
267
+ - !binary |-
268
+ c3BlYy91bml0L2JlbmNobWFyay90ZXN0X25ldy5yYg==
269
+ - !binary |-
270
+ c3BlYy91bml0L2NvbW1hbmQvY29tbW9ucy9leGlzdGluZy5yYXNo
271
+ - !binary |-
272
+ c3BlYy91bml0L2NvbW1hbmQvY29tbW9ucy90ZXN0X3NpbmdsZV9zb3VyY2Uu
273
+ cmI=
274
+ - !binary |-
275
+ c3BlYy91bml0L2NvbW1hbmQvcGxvdC9nbnVwbG90X3V0aWxzL3Rlc3RfdG9f
276
+ ZGF0YS5yYg==
277
+ - !binary |-
278
+ c3BlYy91bml0L2NvbW1hbmQvcGxvdC9nbnVwbG90X3V0aWxzL3Rlc3RfdG9f
279
+ ZGF0YXNldC5yYg==
280
+ - !binary |-
281
+ c3BlYy91bml0L2NvbW1hbmQvcGxvdC9nbnVwbG90X3V0aWxzL3Rlc3RfdG9f
282
+ cGxvdC5yYg==
283
+ - !binary |-
284
+ c3BlYy91bml0L2NvbW1hbmQvdGVzdF9ydW4ucmI=
285
+ - !binary |-
286
+ c3BlYy91bml0L3Rlc3RfYmVuY2htYXJrLnJi
287
+ - !binary |-
288
+ c3BlYy91bml0L3Rlc3RfdmlpaXRlLnJi
289
+ - !binary |-
290
+ c3BlYy91bml0L3Rtcy90ZXN0X2F0dHJpYnV0ZXMucmI=
291
+ - !binary |-
292
+ c3BlYy91bml0L3Rtcy90ZXN0X2NvZXJjZS5yYg==
293
+ - !binary |-
294
+ c3BlYy91bml0L3Rtcy90ZXN0X2NvbnZlcnNpb25zLnJi
295
+ - !binary |-
296
+ c3BlYy91bml0L3Rtcy90ZXN0X29wZXJhdGlvbnMucmI=
297
+ - !binary |-
298
+ dGFza3MvY2xlYW4ucmFrZQ==
299
+ - !binary |-
300
+ dGFza3MvZGVidWdfbWFpbC5yYWtl
301
+ - !binary |-
302
+ dGFza3MvZGVidWdfbWFpbC50eHQ=
303
+ - !binary |-
304
+ dGFza3MvZ2VtLnJha2U=
305
+ - !binary |-
306
+ dGFza3MvaW50ZWdyYXRpb25fdGVzdC5yYWtl
307
+ - !binary |-
308
+ dGFza3Mvc3BlY190ZXN0LnJha2U=
309
+ - !binary |-
310
+ dGFza3MvdW5pdF90ZXN0LnJha2U=
311
+ - !binary |-
312
+ dGFza3MveWFyZC5yYWtl
237
313
  homepage: http://blambeau.github.com/viiite
238
314
  licenses: []
239
-
240
315
  post_install_message:
241
316
  rdoc_options: []
242
-
243
- require_paths:
317
+ require_paths:
244
318
  - lib
245
- required_ruby_version: !ruby/object:Gem::Requirement
319
+ required_ruby_version: !ruby/object:Gem::Requirement
246
320
  none: false
247
- requirements:
248
- - - ">="
249
- - !ruby/object:Gem::Version
250
- hash: -166050863
251
- segments:
321
+ requirements:
322
+ - - ! '>='
323
+ - !ruby/object:Gem::Version
324
+ version: '0'
325
+ segments:
252
326
  - 0
253
- version: "0"
254
- required_rubygems_version: !ruby/object:Gem::Requirement
327
+ hash: -4435213274689180288
328
+ required_rubygems_version: !ruby/object:Gem::Requirement
255
329
  none: false
256
- requirements:
257
- - - ">="
258
- - !ruby/object:Gem::Version
259
- segments:
260
- - 0
261
- version: "0"
330
+ requirements:
331
+ - - ! '>='
332
+ - !ruby/object:Gem::Version
333
+ version: '0'
262
334
  requirements: []
263
-
264
335
  rubyforge_project:
265
- rubygems_version: 1.3.7
336
+ rubygems_version: 1.8.10
266
337
  signing_key:
267
338
  specification_version: 3
268
339
  summary: An alternative to Benchmark
269
- test_files:
270
- - spec/spec_helper.rb
271
- - spec/integration/viiite/viiite_help.cmd
272
- - spec/integration/viiite/viiite_help.stdout
273
- - spec/integration/report/viiite_report_2.cmd
274
- - spec/integration/report/viiite_report_3.cmd
340
+ test_files:
341
+ - spec/fixtures/bdb/Array/bench_sort.rb
342
+ - spec/fixtures/bdb/bench_iteration.rb
343
+ - spec/fixtures/command/bench_iteration.rb
344
+ - spec/fixtures/saved/Array/bench_sort.rash
345
+ - spec/fixtures/saved/bench_iteration.rash
346
+ - spec/integration/plot/plot_1.cmd
347
+ - spec/integration/plot/plot_1.stdout
348
+ - spec/integration/plot/plot_2.cmd
349
+ - spec/integration/plot/plot_2.stdout
350
+ - spec/integration/plot/plot_3.cmd
351
+ - spec/integration/plot/plot_3.stdout
352
+ - spec/integration/plot/plot_4.cmd
353
+ - spec/integration/plot/plot_4.stdout
354
+ - spec/integration/report/viiite_report_1.cmd
275
355
  - spec/integration/report/viiite_report_1.stdout
276
- - spec/integration/report/viiite_report_4.cmd
356
+ - spec/integration/report/viiite_report_2.cmd
277
357
  - spec/integration/report/viiite_report_2.stdout
358
+ - spec/integration/report/viiite_report_3.cmd
278
359
  - spec/integration/report/viiite_report_3.stdout
279
- - spec/integration/report/viiite_report_1.cmd
360
+ - spec/integration/report/viiite_report_4.cmd
280
361
  - spec/integration/report/viiite_report_4.stdout
362
+ - spec/integration/report/viiite_report_5.cmd
363
+ - spec/integration/report/viiite_report_5.stdout
364
+ - spec/integration/report/viiite_report_6.cmd
365
+ - spec/integration/report/viiite_report_6.stdout
366
+ - spec/integration/report/viiite_report_7.cmd
367
+ - spec/integration/report/viiite_report_7.stdout
368
+ - spec/integration/report/viiite_report_8.cmd
369
+ - spec/integration/report/viiite_report_8.stdout
370
+ - spec/integration/report/viiite_report_9.cmd
371
+ - spec/integration/report/viiite_report_9.stdout
281
372
  - spec/integration/test_command.rb
282
- - spec/integration/raw_data.rash
283
- - spec/fixtures/bench_iteration.rb
284
- - spec/unit/formatter/plot/test_to_data.rb
285
- - spec/unit/formatter/plot/test_to_dataset.rb
286
- - spec/unit/formatter/plot/test_to_plot.rb
287
- - spec/unit/test_runner.rb
373
+ - spec/integration/viiite/viiite_help.cmd
374
+ - spec/integration/viiite/viiite_help.stdout
375
+ - spec/spec_helper.rb
376
+ - spec/unit/bdb/cached/test_dataset.rb
377
+ - spec/unit/bdb/immediate/test_benchmark.rb
378
+ - spec/unit/bdb/immediate/test_dataset.rb
379
+ - spec/unit/bdb/immediate/test_enumerable.rb
380
+ - spec/unit/bdb/immediate/test_pattern.rb
381
+ - spec/unit/bdb/test_new.rb
382
+ - spec/unit/bdb/utils/test_bench_file.rb
383
+ - spec/unit/bdb/utils/test_replace_extension.rb
384
+ - spec/unit/benchmark/bench_add.rb
385
+ - spec/unit/benchmark/test_new.rb
386
+ - spec/unit/command/commons/existing.rash
387
+ - spec/unit/command/commons/test_single_source.rb
388
+ - spec/unit/command/plot/gnuplot_utils/test_to_data.rb
389
+ - spec/unit/command/plot/gnuplot_utils/test_to_dataset.rb
390
+ - spec/unit/command/plot/gnuplot_utils/test_to_plot.rb
391
+ - spec/unit/command/test_run.rb
392
+ - spec/unit/test_benchmark.rb
288
393
  - spec/unit/test_viiite.rb
394
+ - spec/unit/tms/test_attributes.rb
289
395
  - spec/unit/tms/test_coerce.rb
290
- - spec/unit/tms/test_divide.rb
291
- - spec/unit/tms/test_minus.rb
292
- - spec/unit/tms/test_plus.rb
293
- - spec/unit/tms/test_times.rb
294
- - spec/unit/tms/test_to_a.rb
295
- - spec/unit/tms/test_to_ruby_literal.rb
296
- - spec/unit/tms/test_to_s.rb
297
- - spec/unit/command/test_run.rb
396
+ - spec/unit/tms/test_conversions.rb
397
+ - spec/unit/tms/test_operations.rb