minitest_log 0.1.0 → 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 414ff4a477e41ee42d0562f91553039206e280d6250724b3382229de9d75be34
4
- data.tar.gz: 025cccda92e9489e10b44b94d4a49682e6398f834807eecd056d2ce38c599649
3
+ metadata.gz: 716851f9c685e15ba71ffea59e47dad1da9343cbf2b9bd23c14f6ce343492085
4
+ data.tar.gz: a9609761116629a1c2d34ffd6caa6d435e4028bdcfe1b22df5f21c6312215027
5
5
  SHA512:
6
- metadata.gz: ace6b6191de2af3509156473668f19c7ad73cbce2501922114bd23b4d0b549c850f37497a8dea1c906a50f7d887bc3221751cce0fd8673a3dc4be69c96ba1fee
7
- data.tar.gz: c6992df8fd2ba3725b3467daf9132dd7950ea0eab350e573ea64427802fc8ac0d8481ab4b7d687113944d345e25524091905412f3fdab212094fa1567fd6ff51
6
+ metadata.gz: 729a1dc2f378cdce0a14be1ab5d67307aad48e47e8c8bc77f446ccdcb5f80f10d0595f0ad12fea71cc3b3fde733160caf0f6b86bdc7b769af12415274c7192a2
7
+ data.tar.gz: 2e2418623de37f1f1e6a249f32a6737f68ed719a711315f759f8420f38a70f57979b1368f3fc9d8e3d8c4a85f11eb73bfd685af6c3a7cafaf5cafe45f43ce509
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- minitest_log (0.1.0)
4
+ minitest_log (0.2.0)
5
5
  diff-lcs (~> 1.3)
6
6
  minitest (~> 5.0)
7
7
 
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ [![Gem Version](https://badge.fury.io/rb/minitest_log.svg)](https://badge.fury.io/rb/minitest_log)
2
+
1
3
  # MinitestLog
2
4
 
3
5
 
@@ -276,13 +278,13 @@ end
276
278
  ```log.xml```:
277
279
  ```xml
278
280
  <log>
279
- <section_ name='My section with timestamp' timestamp='2019-05-05-Sun-14.00.27.776'>
281
+ <section_ name='My section with timestamp' timestamp='2019-05-07-Tue-10.58.13.155'>
280
282
  Section with timestamp.
281
283
  </section_>
282
- <section_ name='My section with duration' duration_seconds='0.500'>
284
+ <section_ name='My section with duration' duration_seconds='0.501'>
283
285
  Section with duration.
284
286
  </section_>
285
- <section_ name='My section with both' timestamp='2019-05-05-Sun-14.00.28.277' duration_seconds='0.500'>
287
+ <section_ name='My section with both' timestamp='2019-05-07-Tue-10.58.13.656' duration_seconds='0.500'>
286
288
  Section with both.
287
289
  </section_>
288
290
  </log>
@@ -354,7 +356,7 @@ end
354
356
  ```xml
355
357
  <log>
356
358
  <section_ name='My unrescued section'>
357
- <uncaught_exception_ timestamp='2019-05-05-Sun-14.00.29.147' class='RuntimeError'>
359
+ <uncaught_exception_ timestamp='2019-05-07-Tue-10.58.14.602' class='RuntimeError'>
358
360
  <message_>
359
361
  Boo!
360
362
  </message_>
@@ -411,7 +413,7 @@ end
411
413
  ```log.xml```:
412
414
  ```xml
413
415
  <log>
414
- <section_ name='Section with potpourri of arguments' a='0' b='1' timestamp='2019-05-05-Sun-14.00.26.096' c='2' d='3' duration_seconds='0.502'>
416
+ <section_ name='Section with potpourri of arguments' a='0' b='1' timestamp='2019-05-07-Tue-10.58.11.338' c='2' d='3' duration_seconds='0.502'>
415
417
  Word More words
416
418
  <rescued_exception_ class='Exception' message='Boo!'>
417
419
  <backtrace_>
@@ -1024,7 +1026,7 @@ end
1024
1026
  (?-mix:Bar)
1025
1027
  </data_>
1026
1028
  <data_ name='My time' class='Time' method=':to_s'>
1027
- 2019-05-05 14:00:22 -0500
1029
+ 2019-05-07 10:58:07 -0500
1028
1030
  </data_>
1029
1031
  <data_ name='My uri,' class='URI::HTTPS' method=':to_s'>
1030
1032
  https://www.github.com
@@ -1796,7 +1798,7 @@ end
1796
1798
  <verdict_ method='verdict_assert_same?' outcome='failed' id='another_id' message='Another message'>
1797
1799
  <expected_ class='String' value='&quot;foo&quot;'/>
1798
1800
  <actual_ class='String' value='&quot;foo&quot;'/>
1799
- <exception_ class='Minitest::Assertion' message='Expected &quot;foo&quot; (oid=28713420) to be the same as &quot;foo&quot; (oid=28713440).'>
1801
+ <exception_ class='Minitest::Assertion' message='Expected &quot;foo&quot; (oid=27958320) to be the same as &quot;foo&quot; (oid=27958340).'>
1800
1802
  <backtrace_>
1801
1803
  <![CDATA[
1802
1804
  verdict_assert_same.rb:6:in `block in test_demo_verdict'
@@ -1,3 +1,3 @@
1
1
  class MinitestLog
2
- VERSION = '0.1.0'
2
+ VERSION = '0.2.0'
3
3
  end
@@ -12,6 +12,10 @@ Gem::Specification.new do |spec|
12
12
  spec.homepage = "https://github.com/BurdetteLamar/minitest_log"
13
13
  spec.license = 'MIT'
14
14
 
15
+ spec.metadata = {
16
+ "documentation_uri" => "https://github.com/BurdetteLamar/minitest_log#minitestlog",
17
+ }
18
+
15
19
  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
16
20
  # to allow pushing to a single host or delete this section to allow pushing to any host.
17
21
  # if spec.respond_to?(:metadata)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: minitest_log
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - burdettelamar
@@ -105,7 +105,8 @@ files:
105
105
  homepage: https://github.com/BurdetteLamar/minitest_log
106
106
  licenses:
107
107
  - MIT
108
- metadata: {}
108
+ metadata:
109
+ documentation_uri: https://github.com/BurdetteLamar/minitest_log#minitestlog
109
110
  post_install_message:
110
111
  rdoc_options: []
111
112
  require_paths: