uuid4 1.0.0 → 1.1.0

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 (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/uuid4.rb +4 -0
  3. data/lib/uuid4/version.rb +1 -1
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ac25cad8ab5ca5765df723b76156865d2e00b74e
4
- data.tar.gz: a82c2472bc503adb59d8a2e6f93acb60583d53a7
3
+ metadata.gz: c8d571b3ef1ee645b4af870cb088dba4ff1f38a0
4
+ data.tar.gz: 8317145274b63c7b287d9e80eb8b89612a54a623
5
5
  SHA512:
6
- metadata.gz: 785f5539dc4d1eafc224da493f6d527f1a03655831090f581f687d88bbde9775fc367c6484f2907dbc63b20304d164786d2ac0b2a4e9ebf41b5a5be602899543
7
- data.tar.gz: e8a0175a0caf5c729e0820521bd2636a9aa435c52c196e20d8c2b2f21ee40d21c8a392996047539b8f5585a8c5579530080fe944417eab785a71bef365cbbfd7
6
+ metadata.gz: 614bcc998d23a801c0cb36bfe2ae499644f532d6aa0a6b6f32aa84b399caa9cab38f8b92215f8c78bf74bc8a1b387d8723428224cbad0cdd9f85c5dc5c579e46
7
+ data.tar.gz: 8a1c30565a9814d814d9d64bd2ffc560187ca738ec93f8f3fa2e886bb8b8adeb8dd0774bb1f3b81fe3822a190a7f35870c5b81b80ffbc60af359fd66194ea5ba
@@ -114,4 +114,8 @@ module Kernel
114
114
  def UUID4(value)
115
115
  UUID4.new(value)
116
116
  end
117
+
118
+ def UUID(value)
119
+ UUID4.new(value)
120
+ end
117
121
  end
@@ -1,7 +1,7 @@
1
1
  class UUID4
2
2
  module VERSION
3
3
  MAJOR = 1
4
- MINOR = 0
4
+ MINOR = 1
5
5
  PATCH = 0
6
6
  STAGE = nil
7
7
  STRING = [MAJOR, MINOR, PATCH, STAGE].reject(&:nil?).join('.')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uuid4
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Graichen