ruby-ulid 0.2.0 → 0.2.2
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 +4 -4
- data/README.md +2 -2
- data/lib/ulid/version.rb +1 -1
- data/lib/ulid.rb +5 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cea320f797b834d5a0f246db9920a9453a6d229728b428590e2f99dd275c8fe9
|
|
4
|
+
data.tar.gz: e703ca1896a7ee4155b1362cffdfaf9499e4ae32073cd440c50750d4e9cc9c1a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b9d0436d98095dd0084675d87a6605848f6c7ee14d65724ce5bd9229945ffc17a3b7e1efaf9a295baeaeac11782c9fc63bc901149cfa58d96046e334d5d19067
|
|
7
|
+
data.tar.gz: f7e016a4ca3d859f8469b5281d9f5581ffe6c0fdde737c554c627f7862461701844e46e4513ce09748e1cdf3fa4b8da2607a8d3267f74c64ae4a257ae54d6e78
|
data/README.md
CHANGED
|
@@ -11,7 +11,7 @@ Also providing [ruby/rbs](https://github.com/ruby/rbs) signature files.
|
|
|
11
11
|

|
|
12
12
|
|
|
13
13
|
[](https://github.com/kachick/ruby-ulid/actions/workflows/test_behaviors.yml/?branch=main)
|
|
14
|
-
[](http://badge.fury.io/rb/ruby-ulid)
|
|
15
15
|
[](https://github.dev/kachick/ruby-ulid)
|
|
16
16
|
|
|
17
17
|
## Universally Unique Lexicographically Sortable Identifier
|
|
@@ -50,7 +50,7 @@ Should be installed!
|
|
|
50
50
|
Add this line to your application/library's `Gemfile` is needed in basic use-case
|
|
51
51
|
|
|
52
52
|
```ruby
|
|
53
|
-
gem 'ruby-ulid', '~> 0.2.
|
|
53
|
+
gem 'ruby-ulid', '~> 0.2.2'
|
|
54
54
|
```
|
|
55
55
|
|
|
56
56
|
### Generator and Parser
|
data/lib/ulid/version.rb
CHANGED
data/lib/ulid.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ruby-ulid
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kenichi Kamiya
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-05-
|
|
11
|
+
date: 2022-05-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: |2
|
|
14
14
|
The ULID(Universally Unique Lexicographically Sortable Identifier) has useful specs for applications (e.g. `Database key`), especially possess all `uniqueness`, `randomness`, `extractable timestamps` and `sortable` features.
|