stable 1.3.0 → 1.3.1

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/stable/spec.rb +3 -1
  3. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 632d329e437a0d82fed98a7fd06f9f93c160363e961ea2c835bcc40cc1330066
4
- data.tar.gz: e301162819f6e056594cc07c600c4c678d91143e371b848367be9e9abaaceaca
3
+ metadata.gz: fbfe47a4e34cd7aa98e7c0cdfa165adcb2612bb7d3e416ff30395239215df9df
4
+ data.tar.gz: 40ea2eef27e201637b20bd88d722d1bf01cad66fd84faed5ca6b9573c2124074
5
5
  SHA512:
6
- metadata.gz: '036778caa60876817ab53b71c2e5c2fbedd4105e9084c1bc6a45b6c688a6172f60a0b3434cc732806426131259848ed345de71d519011263692a907282f9a02a'
7
- data.tar.gz: f427b87ee21f105729862a77e51d06814c90a931f18ced149a6b22cfff42cce643997252e0fdc42f00b9ec6a1db7e478c635db9f45bb7b49076b77443c650804
6
+ metadata.gz: a33475e16728dbb9bf94f6de1807c7157d4b8edabf4a6f8bb67dac10c800a9b092a36ff66a26e8a50da6399e1c83c571edcfc843b613a34e1e898345b7797e2e
7
+ data.tar.gz: 7ed53b7619f0b5644f16f215cc6ed1a3e9ecb949741cb953edca5447784e2cbc71661890217e32674182a1614af4d5e33fd9ee845ada6e1b61fc934528625a46
data/lib/stable/spec.rb CHANGED
@@ -47,7 +47,9 @@ module Stable
47
47
  end
48
48
 
49
49
  def to_s
50
- desc = "#{uuid}/#{signature}"
50
+ short_uuid = uuid.split('-').last
51
+ short_sig = signature[0..6]
52
+ desc = "#{short_uuid}/#{short_sig}"
51
53
  call = "#{class_name}##{method_name}(#{args.join(', ')})"
52
54
 
53
55
  case status
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stable
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeff Lunt