tou 0.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.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.standard.yml +1 -0
- data/.travis.yml +6 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +117 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/lib/tou/generator.rb +15 -0
- data/lib/tou/version.rb +3 -0
- data/lib/tou.rb +71 -0
- data/tou.gemspec +30 -0
- metadata +75 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: b5d9d7a99bc5ce496500024014a1ecca74ce68002a5073d954fb5f0f25e88b8f
|
4
|
+
data.tar.gz: 7cc1690d42a037b5b9a19f9638185931d7a8cb823d8b00013e6814cf509a9c72
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 5e9ba7d181193702dd51794845ff7d30703ff7ce8e57cce83bbda37e13f3effd9fc8900a6073fdc7330649067c000a23814fdbe29c8b353814560d1594a05ea5
|
7
|
+
data.tar.gz: bca3eee3885888f1ff4b90e790bf0f702066846d416ab285f808b977f5c5a05cd1e08aa497635c432509689894bfc8eb59e6964140e811cce0e15b9af1b5783c
|
data/.gitignore
ADDED
data/.standard.yml
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby_version: 2.7
|
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at me@julik.nl. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [https://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: https://contributor-covenant.org
|
74
|
+
[version]: https://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2024 Julik Tarkhanov
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,117 @@
|
|
1
|
+
# Tou
|
2
|
+
|
3
|
+
`Tou`, short for **Time-Ordered-UUID**, is a time-ordered unique identifier scheme. It produces bytes which are compatible with UUIDv4 - the most common UUID format at the moment. While it looks identical to a usual UUIDv4 and will be accepted by all the systems that accept those UUIDs, it has a number of useful properties:
|
4
|
+
|
5
|
+
* It starts with the current number of microseconds, packed in network byte order. This means that the UUIDs will sort by byte value in time-ascending order
|
6
|
+
* It uses 7 bytes of the whole number of microseconds out of 8, giving enough capacity until year 4253
|
7
|
+
* The rest of the UUID is filled with random bits
|
8
|
+
* The UUID still has the correct version (4) and variant (1) to be recognized as a UUIDv4
|
9
|
+
|
10
|
+
The usage of such UUIDs has some neat properties:
|
11
|
+
|
12
|
+
* They sort better in databases using bytes for UUID storage. Iterative SELECTs on large datasets will be much more pleasant.
|
13
|
+
* They will likely compose into more efficient B-trees in database indexes
|
14
|
+
* They sort chronologically
|
15
|
+
* The timestamp can be reconstructed from the UUID, and stays relatively precise
|
16
|
+
* Any system that accepts UUIDv4 identifiers will also accept Tou identifiers
|
17
|
+
* ...which means that you do not need, say, Postgres extensions to use UUIDv7
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
```ruby
|
22
|
+
Tou.uuid #=> "061a417b-0e60-4009-9822-72d241ef27d6"
|
23
|
+
```
|
24
|
+
|
25
|
+
Not much to it, really.
|
26
|
+
|
27
|
+
## Spec, layout in storage/memory
|
28
|
+
|
29
|
+
The Tou is laid out as follows (in its byte representation):
|
30
|
+
|
31
|
+
```
|
32
|
+
0 1 2 3
|
33
|
+
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
34
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
35
|
+
| mus |
|
36
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
37
|
+
| mus | ver | mus | random |
|
38
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
39
|
+
|var| random |
|
40
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
41
|
+
| random |
|
42
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
43
|
+
|
44
|
+
|
45
|
+
mus:
|
46
|
+
56-bit big-endian unsigned number of the Unix Epoch timestamp in
|
47
|
+
microseconds. Occupies 48 bits (0 through 47 in octets 0-5) and
|
48
|
+
4 bits (53 through 57 in octet 6).
|
49
|
+
|
50
|
+
ver:
|
51
|
+
The 4-bit version field as defined by Section 4.2 of RFC9562,
|
52
|
+
set to 0b0100 (4). Occupies bits 48 through 52.
|
53
|
+
|
54
|
+
random:
|
55
|
+
The 70 bits of pseudorandom data to provide uniqueness as
|
56
|
+
per Section 6.9 of RFC9562 and/or an optional counter to guarantee
|
57
|
+
additional monotonicity as per Section 6.2 of RFC9562.
|
58
|
+
Occupies bits 49 through 63 and 66 through 127 of
|
59
|
+
octets 7 to 15
|
60
|
+
|
61
|
+
var:
|
62
|
+
The 2-bit variant field as defined by Section 4.1 of RFC9562,
|
63
|
+
set to 0b10. Occupies bits 64 and 65 of octet 8.
|
64
|
+
|
65
|
+
```
|
66
|
+
|
67
|
+
Compare this to the UUIDv4 layout:
|
68
|
+
|
69
|
+
```
|
70
|
+
0 1 2 3
|
71
|
+
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
|
72
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
73
|
+
| random_a |
|
74
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
75
|
+
| random_a | ver | random_b |
|
76
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
77
|
+
|var| random_c |
|
78
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
79
|
+
| random_c |
|
80
|
+
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
81
|
+
```
|
82
|
+
|
83
|
+
## Installation
|
84
|
+
|
85
|
+
Add this line to your application's Gemfile:
|
86
|
+
|
87
|
+
```ruby
|
88
|
+
gem 'tou'
|
89
|
+
```
|
90
|
+
|
91
|
+
And then execute:
|
92
|
+
|
93
|
+
$ bundle install
|
94
|
+
|
95
|
+
Or install it yourself as:
|
96
|
+
|
97
|
+
$ gem install tou
|
98
|
+
|
99
|
+
|
100
|
+
## Development
|
101
|
+
|
102
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
103
|
+
|
104
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
105
|
+
|
106
|
+
## Contributing
|
107
|
+
|
108
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/cheddar-me/tou. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/cheddar-me/tou/blob/master/CODE_OF_CONDUCT.md).
|
109
|
+
|
110
|
+
|
111
|
+
## License
|
112
|
+
|
113
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
114
|
+
|
115
|
+
## Code of Conduct
|
116
|
+
|
117
|
+
Everyone interacting in the Tou project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/cheddar-me/tou/blob/master/CODE_OF_CONDUCT.md).
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "tou"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
module Tou
|
2
|
+
# When included into an ActiveRecord, will generate a TOU and prefill it
|
3
|
+
# into the "id" attribute if it is blank. Add this module to your records
|
4
|
+
# to set their IDs using Tou.
|
5
|
+
module Generator
|
6
|
+
def self.included(into)
|
7
|
+
into.before_validation :generate_and_write_touid!
|
8
|
+
super
|
9
|
+
end
|
10
|
+
|
11
|
+
def generate_and_write_touid!
|
12
|
+
write_attribute("id", Tou.uuid) if read_attribute("id").blank?
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
data/lib/tou/version.rb
ADDED
data/lib/tou.rb
ADDED
@@ -0,0 +1,71 @@
|
|
1
|
+
require "tou/version"
|
2
|
+
require "securerandom"
|
3
|
+
|
4
|
+
# A generator for time-ordered UUIDs
|
5
|
+
module Tou
|
6
|
+
autoload :VERSION, __dir__ + "/tou/version.rb"
|
7
|
+
autoload :Generator, __dir__ + "/tou/generator.rb"
|
8
|
+
|
9
|
+
# Generates the bag of 16 bytes with UUID in binary form. This is not the
|
10
|
+
# canonical representation but can be converted into one.
|
11
|
+
#
|
12
|
+
# @param random[#bytes] Source of randomness. Normally SecureRandom will be used, but it can be
|
13
|
+
# replaced by a mock or a `Random` object with a known seed, for testing or speed.
|
14
|
+
# @param time[#to_f] A time value that is convertible to a floating-point number of seconds since epoch
|
15
|
+
# @return [String] in binary encoding
|
16
|
+
def self.uuid_bytes(random: SecureRandom, time: Time.now)
|
17
|
+
# Use microseconds for the timestamp
|
18
|
+
epoch_micros = (time.to_f * 1_000_000).round
|
19
|
+
# Encode an 8-byte unsigned big-endian uint, and skip the first byte since it's 0, so we're left with 7 bytes.
|
20
|
+
# This gives us sufficient timestamp resolution to last us into year
|
21
|
+
# This will limit our timestamp to the year 4307.
|
22
|
+
# Q> : 64 bit unsigned big-endian int
|
23
|
+
# We want more significant bytes first for better sorting in Postgres
|
24
|
+
epoch_micros_unsigned_uint_bytes = [epoch_micros].pack("Q>")[1..]
|
25
|
+
ts_bytes = epoch_micros_unsigned_uint_bytes
|
26
|
+
|
27
|
+
# Use the remaining bytes for randomness
|
28
|
+
byte_str = ts_bytes + random.bytes(16 - ts_bytes.bytesize)
|
29
|
+
|
30
|
+
# This last part encodes the version, the timecode and the variant.
|
31
|
+
# To prevent we have a variant, 4 bits of random and then the timecode I move up the timecode 4 bits.
|
32
|
+
# We end up with: 4bit variant - 8bit timecode - 4bit random from original byte string, hence 2 bytes in total.
|
33
|
+
#
|
34
|
+
# V4 random UUIDs use 4 bits to indicate a version and another 2-3 bits to indicate a variant.
|
35
|
+
# Most V4s (including these ones) are variant 1, which is 2 bits.
|
36
|
+
version = "4" # version 4, 4 bits.
|
37
|
+
timepart = ts_bytes[-1].unpack1("H*") # last byte of timecode (ts_bytes) as hex, 8 bits.
|
38
|
+
rest = byte_str[7].unpack1("h") # last 4 bits of 7th byte as hex.
|
39
|
+
|
40
|
+
# Our uuid with encoded timestamp will look something like this 16 bytes in total:
|
41
|
+
# ts = timestamp byte
|
42
|
+
# rnd = random byte
|
43
|
+
# |ts| ts, ts, ts, ts, ts, version(4bits) + first half ts(4bits), last half of ts(4bits) + rnd, variant(2bits) + rnd, rnd, rnd, rnd, rnd, rnd, rnd, rnd]
|
44
|
+
byte_str_part_with_time_and_variant = [version + timepart + rest].pack("H*")
|
45
|
+
|
46
|
+
byte_str.setbyte(6, byte_str_part_with_time_and_variant.getbyte(0))
|
47
|
+
byte_str.setbyte(7, byte_str_part_with_time_and_variant.getbyte(1))
|
48
|
+
byte_str.setbyte(8, (byte_str.getbyte(8) & 0x3f) | 0x80) # variant 1 (10 binary)
|
49
|
+
|
50
|
+
byte_str
|
51
|
+
end
|
52
|
+
|
53
|
+
# Generates the bag of 16 bytes with UUID in binary form. This the
|
54
|
+
# canonical representation but can be converted into one.
|
55
|
+
#
|
56
|
+
# @param random[#bytes] Source of randomness. Normally SecureRandom will be used, but it can be
|
57
|
+
# replaced by a mock or a `Random` object with a known seed, for testing or speed.
|
58
|
+
# @param time[#to_f] A time value that is convertible to a floating-point number of seconds since epoch
|
59
|
+
# @return [String] in binary encoding
|
60
|
+
def self.uuid(**params_for_uuid_bytes)
|
61
|
+
# N : 32 bit unsigned int
|
62
|
+
# n : 16 bit unsigned int
|
63
|
+
# This will separate the whole random bytestring into a couple groups
|
64
|
+
# (as various sized integers) that match the uuid group size
|
65
|
+
# so [32bit int, 16bit int, 16bit int, 16bit int, 16bit int, 32bit int]
|
66
|
+
# Which then can be shown in hex into the string literal to make up the final uuid.
|
67
|
+
ary = uuid_bytes(**params_for_uuid_bytes).unpack("NnnnnN")
|
68
|
+
# format in hex notation with dashes
|
69
|
+
"%08x-%04x-%04x-%04x-%04x%08x" % ary
|
70
|
+
end
|
71
|
+
end
|
data/tou.gemspec
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
require_relative "lib/tou/version"
|
2
|
+
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = "tou"
|
5
|
+
spec.version = Tou::VERSION
|
6
|
+
spec.authors = ["Sebastian van Hesteren", "Julik Tarkhanov"]
|
7
|
+
spec.email = ["me@julik.nl", "sebastian@cheddar.me"]
|
8
|
+
|
9
|
+
spec.summary = "Time-ordered UUIDv4"
|
10
|
+
spec.description = "Time-ordered UUIDv4"
|
11
|
+
spec.homepage = "https://github.com/cheddar-me/tou"
|
12
|
+
spec.license = "MIT"
|
13
|
+
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
14
|
+
|
15
|
+
# spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
|
16
|
+
|
17
|
+
spec.metadata["homepage_uri"] = spec.homepage
|
18
|
+
spec.metadata["source_code_uri"] = "https://github.com/cheddar-me/tou"
|
19
|
+
# spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
|
20
|
+
|
21
|
+
# Specify which files should be added to the gem when it is released.
|
22
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
23
|
+
spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do
|
24
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
25
|
+
end
|
26
|
+
spec.bindir = "exe"
|
27
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
28
|
+
spec.require_paths = ["lib"]
|
29
|
+
spec.add_development_dependency "standard"
|
30
|
+
end
|
metadata
ADDED
@@ -0,0 +1,75 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: tou
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Sebastian van Hesteren
|
8
|
+
- Julik Tarkhanov
|
9
|
+
autorequire:
|
10
|
+
bindir: exe
|
11
|
+
cert_chain: []
|
12
|
+
date: 2024-06-07 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: standard
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - ">="
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: '0'
|
21
|
+
type: :development
|
22
|
+
prerelease: false
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: '0'
|
28
|
+
description: Time-ordered UUIDv4
|
29
|
+
email:
|
30
|
+
- me@julik.nl
|
31
|
+
- sebastian@cheddar.me
|
32
|
+
executables: []
|
33
|
+
extensions: []
|
34
|
+
extra_rdoc_files: []
|
35
|
+
files:
|
36
|
+
- ".gitignore"
|
37
|
+
- ".standard.yml"
|
38
|
+
- ".travis.yml"
|
39
|
+
- CODE_OF_CONDUCT.md
|
40
|
+
- Gemfile
|
41
|
+
- LICENSE.txt
|
42
|
+
- README.md
|
43
|
+
- Rakefile
|
44
|
+
- bin/console
|
45
|
+
- bin/setup
|
46
|
+
- lib/tou.rb
|
47
|
+
- lib/tou/generator.rb
|
48
|
+
- lib/tou/version.rb
|
49
|
+
- tou.gemspec
|
50
|
+
homepage: https://github.com/cheddar-me/tou
|
51
|
+
licenses:
|
52
|
+
- MIT
|
53
|
+
metadata:
|
54
|
+
homepage_uri: https://github.com/cheddar-me/tou
|
55
|
+
source_code_uri: https://github.com/cheddar-me/tou
|
56
|
+
post_install_message:
|
57
|
+
rdoc_options: []
|
58
|
+
require_paths:
|
59
|
+
- lib
|
60
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
61
|
+
requirements:
|
62
|
+
- - ">="
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: 2.3.0
|
65
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - ">="
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
70
|
+
requirements: []
|
71
|
+
rubygems_version: 3.1.6
|
72
|
+
signing_key:
|
73
|
+
specification_version: 4
|
74
|
+
summary: Time-ordered UUIDv4
|
75
|
+
test_files: []
|