EmojifyRspecFormatter 0.0.8 → 0.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d6c28c234620692c5b23c5f5c6befd8904dcbc0e
4
- data.tar.gz: 130f5ead5451dc5cb87738818c06a4520099306f
3
+ metadata.gz: a20a3cd2655f2fc2bf1257b50a05e1dd14f01694
4
+ data.tar.gz: bf20e52ccce1c0a24138c7e0aacc4a5590eb1ff4
5
5
  SHA512:
6
- metadata.gz: 04f4f82b38290392f38745888d1eb4d6b0c4339411a44211a700ca12f39ae296ad3d4a1ce2e6492c833366b5f1ed6e55c7145587d047506abc6e987e2967ece0
7
- data.tar.gz: 08397af977525200c02bfe4656ed09f77603f0445ee858b4ca2390060698576c4a6db2636df0c603763c0a7813fff143b81f4476420e6a99b67dfb289e50a3bb
6
+ metadata.gz: a8b0dd0a0116c9dfe93c3dba96b3d3a206616fe91365763036e23fe85cf46a64d0244b41b200a1dbf19f328c97659fe921ef97d29437a0e51c5a633ce15511a1
7
+ data.tar.gz: 114471edac6666d2c67cc092398612814b5f61c1d0fb3af269d8cea54ece6ecfbd28adca5c7aeba0302b781be5499c16cba3fa5e9649088718827ac22a8a5820
@@ -10,13 +10,13 @@ class EmojifyRspecFormatter < RSpec::Core::Formatters::BaseTextFormatter
10
10
  end
11
11
 
12
12
  def example_passed(passed)
13
- print passed.example
13
+ print passed.example.description.strip
14
14
  @output.print ([' 🍺 ',' 🙌 ', ' 😍 ',
15
15
  ' 🆒 ',' 👌 ', ' 💘 '].sample).colorize(:background => :green)
16
16
  end
17
17
 
18
18
  def example_failed(failed)
19
- print failed.example
19
+ print failed.example.description.strip
20
20
  @output.print ([' 😨 ', ' 😵 ', ' 🙅 ',
21
21
  ' 🆘 ', ' 👎 ', ' 💔 '].sample).colorize(:background => :red)
22
22
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: EmojifyRspecFormatter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Macey Baker