chemistrykit 3.8.1 → 3.9.0.rc1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (59) hide show
  1. data/.gitignore +1 -0
  2. data/CHANGELOG.md +15 -5
  3. data/Gemfile +4 -0
  4. data/README.md +13 -1
  5. data/Rakefile +3 -3
  6. data/chemistrykit.gemspec +7 -3
  7. data/features/brew.feature +1 -1
  8. data/features/chemists.feature +56 -1
  9. data/features/concurrency.feature +2 -2
  10. data/features/exit_status.feature +1 -0
  11. data/features/logging.feature +88 -85
  12. data/features/reporting.feature +105 -0
  13. data/features/step_definitions/steps.rb +4 -4
  14. data/features/support/env.rb +1 -1
  15. data/features/tags.feature +1 -0
  16. data/lib/chemistrykit/chemist.rb +6 -1
  17. data/lib/chemistrykit/chemist/repository/csv_chemist_repository.rb +1 -1
  18. data/lib/chemistrykit/cli/cli.rb +33 -12
  19. data/lib/chemistrykit/configuration.rb +2 -2
  20. data/lib/chemistrykit/formula/formula_lab.rb +13 -0
  21. data/lib/chemistrykit/{parallel_tests_mods.rb → parallel_tests/rspec/runner.rb} +5 -5
  22. data/lib/chemistrykit/reporting/html_report_assembler.rb +170 -0
  23. data/lib/chemistrykit/rspec/html_formatter.rb +241 -0
  24. data/lib/chemistrykit/rspec/j_unit_formatter.rb +124 -0
  25. data/report/config.rb +28 -0
  26. data/report/index.html +213 -0
  27. data/report/javascripts/foundation/foundation.abide.js +194 -0
  28. data/report/javascripts/foundation/foundation.alerts.js +52 -0
  29. data/report/javascripts/foundation/foundation.clearing.js +516 -0
  30. data/report/javascripts/foundation/foundation.cookie.js +74 -0
  31. data/report/javascripts/foundation/foundation.dropdown.js +177 -0
  32. data/report/javascripts/foundation/foundation.forms.js +533 -0
  33. data/report/javascripts/foundation/foundation.interchange.js +280 -0
  34. data/report/javascripts/foundation/foundation.joyride.js +850 -0
  35. data/report/javascripts/foundation/foundation.js +440 -0
  36. data/report/javascripts/foundation/foundation.magellan.js +135 -0
  37. data/report/javascripts/foundation/foundation.orbit.js +412 -0
  38. data/report/javascripts/foundation/foundation.placeholder.js +179 -0
  39. data/report/javascripts/foundation/foundation.reveal.js +330 -0
  40. data/report/javascripts/foundation/foundation.section.js +400 -0
  41. data/report/javascripts/foundation/foundation.tooltips.js +208 -0
  42. data/report/javascripts/foundation/foundation.topbar.js +300 -0
  43. data/report/javascripts/vendor/custom.modernizr.js +4 -0
  44. data/report/javascripts/vendor/jquery.js +9789 -0
  45. data/report/sass/_normalize.scss +402 -0
  46. data/report/sass/_settings.scss +1301 -0
  47. data/report/sass/app.scss +571 -0
  48. data/report/stylesheets/app.css +3636 -0
  49. data/spec/integration/lib/chemistrykit/formula/formula_lab_spec.rb +26 -2
  50. data/spec/integration/lib/chemistrykit/reporting/html_reporting_assembler_spec.rb +18 -0
  51. data/spec/support/evidence/results_0.html +30 -0
  52. data/spec/support/evidence/results_1.html +27 -0
  53. data/spec/unit/lib/chemistrykit/chemist/repository/csv_chemist_repository_spec.rb +15 -2
  54. data/spec/unit/lib/chemistrykit/chemist_spec.rb +17 -1
  55. data/spec/unit/lib/chemistrykit/configuration_spec.rb +2 -2
  56. data/spec/unit/lib/chemistrykit/formula/formula_lab_spec.rb +7 -0
  57. data/spec/unit/lib/chemistrykit/reporting/html_reporting_assembler_spec.rb +22 -0
  58. metadata +94 -13
  59. data/lib/chemistrykit/j_unit.rb +0 -121
@@ -15,8 +15,10 @@ describe ChemistryKit::Formula::FormulaLab do
15
15
 
16
16
  before(:each) do
17
17
  @stub_driver = double 'Selenium::WebDriver::Driver'
18
- chemists_path = File.join(Dir.pwd, 'spec', 'support', 'chemists.csv')
19
- @repo = ChemistryKit::Chemist::Repository::CsvChemistRepository.new chemists_path
18
+ files = []
19
+ files.push File.join(Dir.pwd, 'spec', 'support', 'chemists.csv')
20
+ files.push File.join(Dir.pwd, 'spec', 'support', 'other_chemists.csv')
21
+ @repo = ChemistryKit::Chemist::Repository::CsvChemistRepository.new files
20
22
  formulas_dir = File.join(Dir.pwd, 'spec', 'support', 'formulas')
21
23
  @lab = ChemistryKit::Formula::FormulaLab.new @stub_driver, @repo, formulas_dir
22
24
  end
@@ -69,4 +71,26 @@ describe ChemistryKit::Formula::FormulaLab do
69
71
  formula2.chemist.type.should eq 'new'
70
72
  end
71
73
 
74
+ it 'should get chemists from different files' do
75
+ formula1 = @lab.using(VALID_CHEMIST_FORMULA_KEY).with('cowboy1').mix
76
+ formula1.chemist.passion.should eq 'Wrasslin'
77
+ formula2 = @lab.using(VALID_ALTERNATE_CHEMIST_FORMULA).with_first('normal').mix
78
+ formula2.chemist.email.should eq 'normal@email.com'
79
+ end
80
+
81
+ it 'should compose a chemist on formula creation' do
82
+ formula = @lab.using(VALID_ALTERNATE_CHEMIST_FORMULA).with('normal1').and_with('cowboy1').mix
83
+ formula.chemist.cowboy.passion.should eq 'Wrasslin'
84
+ end
85
+
86
+ it 'should compose the same object of chemist' do
87
+ formula1 = @lab.using(VALID_CHEMIST_FORMULA_KEY).with('normal1').and_with('cowboy1').mix
88
+ formula2 = @lab.using(VALID_ALTERNATE_CHEMIST_FORMULA).with('normal1').and_with('cowboy1').mix
89
+ expect(formula1.chemist).to be(formula2.chemist)
90
+ formula2.change_chemist_type 'other'
91
+ formula1.chemist.type.should eq 'other'
92
+ formula1.chemist.type = 'new'
93
+ formula2.chemist.type.should eq 'new'
94
+ end
95
+
72
96
  end
@@ -0,0 +1,18 @@
1
+ # Encoding: utf-8
2
+
3
+ require 'spec_helper'
4
+ require 'chemistrykit/reporting/html_report_assembler'
5
+
6
+ describe ChemistryKit::Reporting::HtmlReportAssembler do
7
+
8
+ before(:each) do
9
+ results_folder = File.join(Dir.pwd, 'spec', 'support', 'evidence')
10
+ output_file = File.join(Dir.pwd, 'build', 'tmp', 'final_results.html')
11
+ @assembler = ChemistryKit::Reporting::HtmlReportAssembler.new(results_folder, output_file)
12
+ end
13
+
14
+ it 'should correctly assemble the files' do
15
+ @assembler.assemble
16
+ end
17
+
18
+ end
@@ -0,0 +1,30 @@
1
+ <div class="results" data-count="3" data-duration="35.11722" data-failures="1" data-pendings="1"><div class="row example-group failing"><div class="large-12 columns">
2
+ <h3>
3
+ <i class="icon-beaker"></i>Reporting Beaker 1</h3>
4
+ <div class="examples">
5
+ <div class="row example failing"><div class="large-12 columns">
6
+ <div class="row example-heading">
7
+ <div class="large-9 columns"><p>Loads an external web page, from 1, example 1</p></div>
8
+ <div class="large-3 columns text-right"><p>12.26565</p></div>
9
+ </div>
10
+ <div class="row example-body"><div class="large-12 columns"><div class="row exception"><div class="large-12 columns"><pre>expected "Google" to include "Yoogle"</pre></div></div></div></div>
11
+ </div></div>
12
+ <div class="row example passing"><div class="large-12 columns">
13
+ <div class="row example-heading">
14
+ <div class="large-9 columns"><p>Loads an external web page, from 1, example 2</p></div>
15
+ <div class="large-3 columns text-right"><p>11.55457</p></div>
16
+ </div>
17
+ <div class="row example-body"><div class="large-12 columns"></div></div>
18
+ </div></div>
19
+ <div class="row example pending"><div class="large-12 columns">
20
+ <div class="row example-heading">
21
+ <div class="large-9 columns"><p>Something pending</p></div>
22
+ <div class="large-3 columns text-right"><p>9.77671</p></div>
23
+ </div>
24
+ <div class="row example-body"><div class="large-12 columns"><div class="row exception"><div class="large-12 columns"><pre>PENDING: this should be pending</pre></div></div></div></div>
25
+ </div></div>
26
+ </div>
27
+ </div></div></div>
28
+
29
+ Randomized with seed 6734
30
+
@@ -0,0 +1,27 @@
1
+ <div class="results" data-count="2" data-duration="25.556397" data-failures="2" data-pendings="0">
2
+ <div class="row example-group failing"><div class="large-12 columns">
3
+ <h3>
4
+ <i class="icon-beaker"></i>Reporting Beaker 2</h3>
5
+ <div class="examples"><div class="row example failing"><div class="large-12 columns">
6
+ <div class="row example-heading">
7
+ <div class="large-9 columns"><p>Loads an external web page, from 2</p></div>
8
+ <div class="large-3 columns text-right"><p>12.15509</p></div>
9
+ </div>
10
+ <div class="row example-body"><div class="large-12 columns"><div class="row exception"><div class="large-12 columns"><pre>expected "Google" to include "Yoogle"</pre></div></div></div></div>
11
+ </div></div></div>
12
+ </div></div>
13
+ <div class="row example-group failing"><div class="large-12 columns">
14
+ <h3>
15
+ <i class="icon-beaker"></i>Reporting Beaker 3</h3>
16
+ <div class="examples"><div class="row example failing"><div class="large-12 columns">
17
+ <div class="row example-heading">
18
+ <div class="large-9 columns"><p>Loads an external web page, from 3</p></div>
19
+ <div class="large-3 columns text-right"><p>11.89832</p></div>
20
+ </div>
21
+ <div class="row example-body"><div class="large-12 columns"><div class="row exception"><div class="large-12 columns"><pre>expected "Google" to include "Yoogle"</pre></div></div></div></div>
22
+ </div></div></div>
23
+ </div></div>
24
+ </div>
25
+
26
+ Randomized with seed 63839
27
+
@@ -72,7 +72,7 @@ describe ChemistryKit::Chemist::Repository::CsvChemistRepository do
72
72
  end.to raise_error ArgumentError, 'You must define a key field!'
73
73
  end
74
74
 
75
- it 'can search more than one csv file' do
75
+ it 'can search more than one csv file by type' do
76
76
  files = []
77
77
  files.push File.join(Dir.pwd, 'spec', 'support', VALID_CHEMIST_CSV)
78
78
  files.push File.join(Dir.pwd, 'spec', 'support', 'other_chemists.csv')
@@ -82,9 +82,22 @@ describe ChemistryKit::Chemist::Repository::CsvChemistRepository do
82
82
  chemist.passion.should eq 'Wrasslin'
83
83
 
84
84
  chemist = repo.load_first_chemist_of_type 'normal'
85
- chemist.email = 'normal@email.com'
85
+ chemist.email.should eq 'normal@email.com'
86
86
  end
87
87
 
88
+ it 'can search more than one csv file by key' do
89
+ files = []
90
+ files.push File.join(Dir.pwd, 'spec', 'support', VALID_CHEMIST_CSV)
91
+ files.push File.join(Dir.pwd, 'spec', 'support', 'other_chemists.csv')
92
+ repo = ChemistryKit::Chemist::Repository::CsvChemistRepository.new(files)
93
+
94
+ chemist = repo.load_chemist_by_key 'cowboy1'
95
+ chemist.passion.should eq 'Wrasslin'
96
+
97
+ chemist = repo.load_chemist_by_key 'normal1'
98
+ chemist.email.should eq 'normal@email.com'
99
+ end
100
+
88
101
  it 'should replace the {{UUID}} token with a uuid on runtime if found in a parameter' do
89
102
  chemist = @repo.load_chemist_by_key 'uuid_chemist'
90
103
  # the {{UUID}} token was placed in the email parameter
@@ -28,7 +28,7 @@ describe ChemistryKit::Chemist do
28
28
  @chemist.data.should eq my_key: VALID_VALUE
29
29
  end
30
30
 
31
- it 'should not be able to override the key variable' do
31
+ it 'should not be able to override the key, or with variable' do
32
32
  @chemist.key = 'other'
33
33
  @chemist.key.should eq VALID_KEY
34
34
  @chemist.data.include?(:key).should be_false
@@ -40,4 +40,20 @@ describe ChemistryKit::Chemist do
40
40
  @chemist.name.should eq 'cool dude'
41
41
  @chemist.email.should eq 'fun@gmail.com'
42
42
  end
43
+
44
+ it 'should be able to change the chemist type' do
45
+ @chemist.type = 'new_type'
46
+ @chemist.type.should eq 'new_type'
47
+ end
48
+
49
+ it 'should be able to add another chemist as a data element' do
50
+ sub_chemist = ChemistryKit::Chemist.new('sub_key', 'sub_type')
51
+ other_sub = ChemistryKit::Chemist.new('other_key', 'other_type')
52
+ @chemist.with(sub_chemist).with(other_sub)
53
+ @chemist.sub_type.key.should eq 'sub_key'
54
+ @chemist.sub_type.type.should eq 'sub_type'
55
+ @chemist.other_type.key.should eq 'other_key'
56
+ @chemist.other_type.type.should eq 'other_type'
57
+ end
58
+
43
59
  end
@@ -11,7 +11,7 @@ describe ChemistryKit::Configuration do
11
11
  VALID_LOG_PATH = 'evidence'
12
12
  VALID_JUNIT = 'results_junit.xml'
13
13
  VALID_FORMAT_JUNIT = 'junit'
14
- VALID_JUNIT_FORMAT_OUT = 'JUnit'
14
+ VALID_JUNIT_FORMAT_OUT = 'ChemistryKit::RSpec::JUnitFormatter'
15
15
 
16
16
  before(:each) do
17
17
  @valid_selenium_connect_hash = { log: 'evidence', host: 'localhost' }
@@ -63,7 +63,7 @@ describe ChemistryKit::Configuration do
63
63
 
64
64
  it 'should correct the format to JUnit' do
65
65
  config = ChemistryKit::Configuration.new(@valid_config_hash)
66
- config.log.format.should eq 'JUnit'
66
+ config.log.format.should eq VALID_JUNIT_FORMAT_OUT
67
67
  end
68
68
 
69
69
  it 'selenium_connect log should default to the main log' do
@@ -8,6 +8,7 @@ describe ChemistryKit::Formula::FormulaLab do
8
8
  VALID_FORMULA_KEY = 'my_formula'
9
9
  VALID_CHEMIST_KEY = 'admin1'
10
10
  VALID_CHEMIST_TYPE = 'admin'
11
+ VALID_SUB_CHEMIST_KEY = 'sub1'
11
12
 
12
13
  before(:each) do
13
14
  @stub_driver = double 'Selenium::WebDriver::Driver'
@@ -32,6 +33,7 @@ describe ChemistryKit::Formula::FormulaLab do
32
33
  @lab.should respond_to :with
33
34
  @lab.should respond_to :with_random
34
35
  @lab.should respond_to :with_first
36
+ @lab.should respond_to :and_with
35
37
  end
36
38
 
37
39
  it 'should let the formula key be set' do
@@ -54,6 +56,11 @@ describe ChemistryKit::Formula::FormulaLab do
54
56
  expect(@stub_repo).to have_received(:load_first_chemist_of_type).with(VALID_CHEMIST_TYPE)
55
57
  end
56
58
 
59
+ it 'should add an additional chemist data set using and_with' do
60
+ @lab.and_with(VALID_SUB_CHEMIST_KEY).should be @lab
61
+ expect(@stub_repo).to have_received(:load_chemist_by_key).with(VALID_SUB_CHEMIST_KEY)
62
+ end
63
+
57
64
  it 'should raise an error if mix is called and the formula is nil' do
58
65
  expect do
59
66
  @lab.mix
@@ -0,0 +1,22 @@
1
+ # Encoding: utf-8
2
+
3
+ require 'spec_helper'
4
+ require 'chemistrykit/reporting/html_report_assembler'
5
+
6
+ describe ChemistryKit::Reporting::HtmlReportAssembler do
7
+
8
+ before(:each) do
9
+ results_folder = File.join(Dir.pwd, 'spec', 'support', 'evidence')
10
+ output_file = File.join(Dir.pwd, 'build', 'tmp', 'final_results.html')
11
+ @assembler = ChemistryKit::Reporting::HtmlReportAssembler.new(results_folder, output_file)
12
+ end
13
+
14
+ it 'should be initialized with folder path and output path' do
15
+ @assembler.should be_an_instance_of ChemistryKit::Reporting::HtmlReportAssembler
16
+ end
17
+
18
+ it 'should respond to assemble' do
19
+ @assembler.should respond_to :assemble
20
+ end
21
+
22
+ end
metadata CHANGED
@@ -1,8 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chemistrykit
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.8.1
5
- prerelease:
4
+ version: 3.9.0.rc1
5
+ prerelease: 6
6
6
  platform: ruby
7
7
  authors:
8
8
  - Dave Haeffner
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2013-08-09 00:00:00.000000000 Z
13
+ date: 2013-08-12 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: thor
@@ -99,7 +99,7 @@ dependencies:
99
99
  requirements:
100
100
  - - ~>
101
101
  - !ruby/object:Gem::Version
102
- version: 3.4.0
102
+ version: 3.5.0
103
103
  type: :runtime
104
104
  prerelease: false
105
105
  version_requirements: !ruby/object:Gem::Requirement
@@ -107,7 +107,7 @@ dependencies:
107
107
  requirements:
108
108
  - - ~>
109
109
  - !ruby/object:Gem::Version
110
- version: 3.4.0
110
+ version: 3.5.0
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: parallel_tests
113
113
  requirement: !ruby/object:Gem::Requirement
@@ -156,7 +156,55 @@ dependencies:
156
156
  - - ~>
157
157
  - !ruby/object:Gem::Version
158
158
  version: 0.2.1
159
- description: Cleaned up chemists to use same instance in the formulas and bug fixes
159
+ - !ruby/object:Gem::Dependency
160
+ name: nokogiri
161
+ requirement: !ruby/object:Gem::Requirement
162
+ none: false
163
+ requirements:
164
+ - - ~>
165
+ - !ruby/object:Gem::Version
166
+ version: 1.6.0
167
+ type: :runtime
168
+ prerelease: false
169
+ version_requirements: !ruby/object:Gem::Requirement
170
+ none: false
171
+ requirements:
172
+ - - ~>
173
+ - !ruby/object:Gem::Version
174
+ version: 1.6.0
175
+ - !ruby/object:Gem::Dependency
176
+ name: syntax
177
+ requirement: !ruby/object:Gem::Requirement
178
+ none: false
179
+ requirements:
180
+ - - ! '>='
181
+ - !ruby/object:Gem::Version
182
+ version: '0'
183
+ type: :runtime
184
+ prerelease: false
185
+ version_requirements: !ruby/object:Gem::Requirement
186
+ none: false
187
+ requirements:
188
+ - - ! '>='
189
+ - !ruby/object:Gem::Version
190
+ version: '0'
191
+ - !ruby/object:Gem::Dependency
192
+ name: pygments.rb
193
+ requirement: !ruby/object:Gem::Requirement
194
+ none: false
195
+ requirements:
196
+ - - ~>
197
+ - !ruby/object:Gem::Version
198
+ version: 0.5.2
199
+ type: :runtime
200
+ prerelease: false
201
+ version_requirements: !ruby/object:Gem::Requirement
202
+ none: false
203
+ requirements:
204
+ - - ~>
205
+ - !ruby/object:Gem::Version
206
+ version: 0.5.2
207
+ description: Added chemist composition and consolidated html report building.
160
208
  email:
161
209
  - dave@arrgyle.com
162
210
  - jason@arrgyle.com
@@ -193,6 +241,7 @@ files:
193
241
  - features/logging.feature
194
242
  - features/multi-config.feature
195
243
  - features/new.feature
244
+ - features/reporting.feature
196
245
  - features/step_definitions/steps.rb
197
246
  - features/support/env.rb
198
247
  - features/tags.feature
@@ -209,8 +258,10 @@ files:
209
258
  - lib/chemistrykit/formula/base.rb
210
259
  - lib/chemistrykit/formula/chemist_aware.rb
211
260
  - lib/chemistrykit/formula/formula_lab.rb
212
- - lib/chemistrykit/j_unit.rb
213
- - lib/chemistrykit/parallel_tests_mods.rb
261
+ - lib/chemistrykit/parallel_tests/rspec/runner.rb
262
+ - lib/chemistrykit/reporting/html_report_assembler.rb
263
+ - lib/chemistrykit/rspec/html_formatter.rb
264
+ - lib/chemistrykit/rspec/j_unit_formatter.rb
214
265
  - lib/templates/beaker.tt
215
266
  - lib/templates/beaker_with_formula.tt
216
267
  - lib/templates/chemistrykit/beakers/.gitkeep
@@ -221,13 +272,40 @@ files:
221
272
  - lib/templates/chemistrykit/formulas/lib/catalysts/.gitkeep
222
273
  - lib/templates/chemistrykit/formulas/lib/formula.rb
223
274
  - lib/templates/formula.tt
275
+ - report/config.rb
276
+ - report/index.html
277
+ - report/javascripts/foundation/foundation.abide.js
278
+ - report/javascripts/foundation/foundation.alerts.js
279
+ - report/javascripts/foundation/foundation.clearing.js
280
+ - report/javascripts/foundation/foundation.cookie.js
281
+ - report/javascripts/foundation/foundation.dropdown.js
282
+ - report/javascripts/foundation/foundation.forms.js
283
+ - report/javascripts/foundation/foundation.interchange.js
284
+ - report/javascripts/foundation/foundation.joyride.js
285
+ - report/javascripts/foundation/foundation.js
286
+ - report/javascripts/foundation/foundation.magellan.js
287
+ - report/javascripts/foundation/foundation.orbit.js
288
+ - report/javascripts/foundation/foundation.placeholder.js
289
+ - report/javascripts/foundation/foundation.reveal.js
290
+ - report/javascripts/foundation/foundation.section.js
291
+ - report/javascripts/foundation/foundation.tooltips.js
292
+ - report/javascripts/foundation/foundation.topbar.js
293
+ - report/javascripts/vendor/custom.modernizr.js
294
+ - report/javascripts/vendor/jquery.js
295
+ - report/sass/_normalize.scss
296
+ - report/sass/_settings.scss
297
+ - report/sass/app.scss
298
+ - report/stylesheets/app.css
224
299
  - spec/integration/lib/chemistrykit/.gitkeep
225
300
  - spec/integration/lib/chemistrykit/formula/formula_lab_spec.rb
301
+ - spec/integration/lib/chemistrykit/reporting/html_reporting_assembler_spec.rb
226
302
  - spec/spec_helper.rb
227
303
  - spec/support/bad_chemists.csv
228
304
  - spec/support/chemists.csv
229
305
  - spec/support/config.yaml
230
306
  - spec/support/default_chemists.csv
307
+ - spec/support/evidence/results_0.html
308
+ - spec/support/evidence/results_1.html
231
309
  - spec/support/formulas/sub_module/alt_chemist_formula.rb
232
310
  - spec/support/formulas/sub_module/basic_formula.rb
233
311
  - spec/support/formulas/sub_module/chemist_formula.rb
@@ -241,6 +319,7 @@ files:
241
319
  - spec/unit/lib/chemistrykit/formula/base_spec.rb
242
320
  - spec/unit/lib/chemistrykit/formula/chemist_aware_spec.rb
243
321
  - spec/unit/lib/chemistrykit/formula/formula_lab_spec.rb
322
+ - spec/unit/lib/chemistrykit/reporting/html_reporting_assembler_spec.rb
244
323
  homepage: https://github.com/arrgyle/chemistrykit
245
324
  licenses:
246
325
  - MIT
@@ -257,12 +336,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
257
336
  required_rubygems_version: !ruby/object:Gem::Requirement
258
337
  none: false
259
338
  requirements:
260
- - - ! '>='
339
+ - - ! '>'
261
340
  - !ruby/object:Gem::Version
262
- version: '0'
263
- segments:
264
- - 0
265
- hash: -2034050010631894604
341
+ version: 1.3.1
266
342
  requirements: []
267
343
  rubyforge_project:
268
344
  rubygems_version: 1.8.25
@@ -281,16 +357,20 @@ test_files:
281
357
  - features/logging.feature
282
358
  - features/multi-config.feature
283
359
  - features/new.feature
360
+ - features/reporting.feature
284
361
  - features/step_definitions/steps.rb
285
362
  - features/support/env.rb
286
363
  - features/tags.feature
287
364
  - spec/integration/lib/chemistrykit/.gitkeep
288
365
  - spec/integration/lib/chemistrykit/formula/formula_lab_spec.rb
366
+ - spec/integration/lib/chemistrykit/reporting/html_reporting_assembler_spec.rb
289
367
  - spec/spec_helper.rb
290
368
  - spec/support/bad_chemists.csv
291
369
  - spec/support/chemists.csv
292
370
  - spec/support/config.yaml
293
371
  - spec/support/default_chemists.csv
372
+ - spec/support/evidence/results_0.html
373
+ - spec/support/evidence/results_1.html
294
374
  - spec/support/formulas/sub_module/alt_chemist_formula.rb
295
375
  - spec/support/formulas/sub_module/basic_formula.rb
296
376
  - spec/support/formulas/sub_module/chemist_formula.rb
@@ -304,3 +384,4 @@ test_files:
304
384
  - spec/unit/lib/chemistrykit/formula/base_spec.rb
305
385
  - spec/unit/lib/chemistrykit/formula/chemist_aware_spec.rb
306
386
  - spec/unit/lib/chemistrykit/formula/formula_lab_spec.rb
387
+ - spec/unit/lib/chemistrykit/reporting/html_reporting_assembler_spec.rb