rubygems-update 3.5.18 → 3.5.19
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +40 -0
- data/Manifest.txt +10 -0
- data/bundler/CHANGELOG.md +28 -0
- data/bundler/lib/bundler/build_metadata.rb +2 -2
- data/bundler/lib/bundler/cli/add.rb +1 -1
- data/bundler/lib/bundler/cli/gem.rb +4 -1
- data/bundler/lib/bundler/cli/lock.rb +5 -5
- data/bundler/lib/bundler/cli/outdated.rb +1 -1
- data/bundler/lib/bundler/definition.rb +3 -7
- data/bundler/lib/bundler/dsl.rb +27 -17
- data/bundler/lib/bundler/errors.rb +7 -5
- data/bundler/lib/bundler/fetcher.rb +2 -2
- data/bundler/lib/bundler/inline.rb +19 -4
- data/bundler/lib/bundler/installer/gem_installer.rb +4 -2
- data/bundler/lib/bundler/installer/parallel_installer.rb +3 -2
- data/bundler/lib/bundler/installer.rb +9 -11
- data/bundler/lib/bundler/man/bundle-add.1 +27 -16
- data/bundler/lib/bundler/man/bundle-add.1.ronn +37 -14
- data/bundler/lib/bundler/man/bundle-binstubs.1 +1 -1
- data/bundler/lib/bundler/man/bundle-cache.1 +1 -1
- data/bundler/lib/bundler/man/bundle-check.1 +1 -1
- data/bundler/lib/bundler/man/bundle-clean.1 +1 -1
- data/bundler/lib/bundler/man/bundle-config.1 +1 -1
- data/bundler/lib/bundler/man/bundle-console.1 +1 -1
- data/bundler/lib/bundler/man/bundle-doctor.1 +1 -1
- data/bundler/lib/bundler/man/bundle-exec.1 +1 -1
- data/bundler/lib/bundler/man/bundle-gem.1 +1 -1
- data/bundler/lib/bundler/man/bundle-help.1 +1 -1
- data/bundler/lib/bundler/man/bundle-info.1 +1 -1
- data/bundler/lib/bundler/man/bundle-init.1 +1 -1
- data/bundler/lib/bundler/man/bundle-inject.1 +1 -1
- data/bundler/lib/bundler/man/bundle-install.1 +1 -1
- data/bundler/lib/bundler/man/bundle-list.1 +1 -1
- data/bundler/lib/bundler/man/bundle-lock.1 +1 -1
- data/bundler/lib/bundler/man/bundle-open.1 +1 -1
- data/bundler/lib/bundler/man/bundle-outdated.1 +1 -1
- data/bundler/lib/bundler/man/bundle-platform.1 +1 -1
- data/bundler/lib/bundler/man/bundle-plugin.1 +1 -1
- data/bundler/lib/bundler/man/bundle-pristine.1 +1 -1
- data/bundler/lib/bundler/man/bundle-remove.1 +1 -1
- data/bundler/lib/bundler/man/bundle-show.1 +1 -1
- data/bundler/lib/bundler/man/bundle-update.1 +1 -1
- data/bundler/lib/bundler/man/bundle-version.1 +1 -1
- data/bundler/lib/bundler/man/bundle-viz.1 +1 -1
- data/bundler/lib/bundler/man/bundle.1 +1 -1
- data/bundler/lib/bundler/man/gemfile.5 +3 -1
- data/bundler/lib/bundler/man/gemfile.5.ronn +6 -0
- data/bundler/lib/bundler/retry.rb +1 -1
- data/bundler/lib/bundler/ruby_version.rb +7 -1
- data/bundler/lib/bundler/rubygems_ext.rb +43 -16
- data/bundler/lib/bundler/rubygems_gem_installer.rb +4 -3
- data/bundler/lib/bundler/source/git.rb +9 -5
- data/bundler/lib/bundler/source/rubygems.rb +5 -12
- data/bundler/lib/bundler/ui/shell.rb +24 -2
- data/bundler/lib/bundler/ui/silent.rb +12 -1
- data/bundler/lib/bundler/vendor/securerandom/.document +1 -0
- data/bundler/lib/bundler/vendor/securerandom/LICENSE.txt +22 -0
- data/bundler/lib/bundler/vendor/securerandom/lib/random/formatter.rb +373 -0
- data/bundler/lib/bundler/vendor/securerandom/lib/securerandom.rb +96 -0
- data/bundler/lib/bundler/vendored_securerandom.rb +14 -0
- data/bundler/lib/bundler/version.rb +1 -1
- data/bundler/lib/bundler.rb +1 -1
- data/lib/rubygems/commands/exec_command.rb +1 -6
- data/lib/rubygems/commands/fetch_command.rb +14 -0
- data/lib/rubygems/commands/install_command.rb +0 -4
- data/lib/rubygems/commands/setup_command.rb +2 -0
- data/lib/rubygems/exceptions.rb +2 -3
- data/lib/rubygems/installer.rb +1 -1
- data/lib/rubygems/remote_fetcher.rb +0 -1
- data/lib/rubygems/resolver/activation_request.rb +1 -1
- data/lib/rubygems/resolver/best_set.rb +2 -28
- data/lib/rubygems/source/git.rb +7 -5
- data/lib/rubygems/source/installed.rb +3 -1
- data/lib/rubygems/source/local.rb +8 -4
- data/lib/rubygems/source/specific_file.rb +5 -3
- data/lib/rubygems/source.rb +10 -8
- data/lib/rubygems/specification.rb +1 -1
- data/lib/rubygems/specification_policy.rb +1 -1
- data/lib/rubygems/vendor/molinillo/lib/molinillo/resolution.rb +1 -1
- data/lib/rubygems/vendor/net-http/lib/net/https.rb +1 -1
- data/lib/rubygems/vendor/optparse/lib/optparse.rb +1 -1
- data/lib/rubygems/vendor/resolv/lib/resolv.rb +71 -16
- data/lib/rubygems/vendor/securerandom/.document +1 -0
- data/lib/rubygems/vendor/securerandom/LICENSE.txt +22 -0
- data/lib/rubygems/vendor/securerandom/lib/random/formatter.rb +373 -0
- data/lib/rubygems/vendor/securerandom/lib/securerandom.rb +96 -0
- data/lib/rubygems/vendored_securerandom.rb +4 -0
- data/lib/rubygems.rb +18 -15
- data/rubygems-update.gemspec +1 -1
- metadata +13 -3
data/lib/rubygems/source/git.rb
CHANGED
@@ -157,12 +157,14 @@ class Gem::Source::Git < Gem::Source
|
|
157
157
|
end
|
158
158
|
|
159
159
|
def pretty_print(q) # :nodoc:
|
160
|
-
q.
|
161
|
-
q.
|
162
|
-
|
160
|
+
q.object_group(self) do
|
161
|
+
q.group 2, "[Git: ", "]" do
|
162
|
+
q.breakable
|
163
|
+
q.text @repository
|
163
164
|
|
164
|
-
|
165
|
-
|
165
|
+
q.breakable
|
166
|
+
q.text @reference
|
167
|
+
end
|
166
168
|
end
|
167
169
|
end
|
168
170
|
|
@@ -117,10 +117,14 @@ class Gem::Source::Local < Gem::Source
|
|
117
117
|
end
|
118
118
|
|
119
119
|
def pretty_print(q) # :nodoc:
|
120
|
-
q.
|
121
|
-
q.
|
122
|
-
|
123
|
-
|
120
|
+
q.object_group(self) do
|
121
|
+
q.group 2, "[Local gems:", "]" do
|
122
|
+
q.breakable
|
123
|
+
if @specs
|
124
|
+
q.seplist @specs.keys do |v|
|
125
|
+
q.text v.full_name
|
126
|
+
end
|
127
|
+
end
|
124
128
|
end
|
125
129
|
end
|
126
130
|
end
|
@@ -42,9 +42,11 @@ class Gem::Source::SpecificFile < Gem::Source
|
|
42
42
|
end
|
43
43
|
|
44
44
|
def pretty_print(q) # :nodoc:
|
45
|
-
q.
|
46
|
-
q.
|
47
|
-
|
45
|
+
q.object_group(self) do
|
46
|
+
q.group 2, "[SpecificFile:", "]" do
|
47
|
+
q.breakable
|
48
|
+
q.text @path
|
49
|
+
end
|
48
50
|
end
|
49
51
|
end
|
50
52
|
|
data/lib/rubygems/source.rb
CHANGED
@@ -79,7 +79,7 @@ class Gem::Source
|
|
79
79
|
uri
|
80
80
|
end
|
81
81
|
|
82
|
-
bundler_api_uri = enforce_trailing_slash(fetch_uri)
|
82
|
+
bundler_api_uri = enforce_trailing_slash(fetch_uri) + "versions"
|
83
83
|
|
84
84
|
begin
|
85
85
|
fetcher = Gem::RemoteFetcher.fetcher
|
@@ -213,14 +213,16 @@ class Gem::Source
|
|
213
213
|
end
|
214
214
|
|
215
215
|
def pretty_print(q) # :nodoc:
|
216
|
-
q.
|
217
|
-
q.
|
218
|
-
q.text @uri.to_s
|
219
|
-
|
220
|
-
if api = uri
|
216
|
+
q.object_group(self) do
|
217
|
+
q.group 2, "[Remote:", "]" do
|
221
218
|
q.breakable
|
222
|
-
q.text
|
223
|
-
|
219
|
+
q.text @uri.to_s
|
220
|
+
|
221
|
+
if api = uri
|
222
|
+
q.breakable
|
223
|
+
q.text "API URI: "
|
224
|
+
q.text api.to_s
|
225
|
+
end
|
224
226
|
end
|
225
227
|
end
|
226
228
|
end
|
@@ -1318,7 +1318,7 @@ class Gem::Specification < Gem::BasicSpecification
|
|
1318
1318
|
spec.instance_variable_set :@has_rdoc, array[15]
|
1319
1319
|
spec.instance_variable_set :@new_platform, array[16]
|
1320
1320
|
spec.instance_variable_set :@platform, array[16].to_s
|
1321
|
-
spec.instance_variable_set :@
|
1321
|
+
spec.instance_variable_set :@licenses, [array[17]]
|
1322
1322
|
spec.instance_variable_set :@metadata, array[18]
|
1323
1323
|
spec.instance_variable_set :@loaded, false
|
1324
1324
|
spec.instance_variable_set :@activated, false
|
@@ -307,7 +307,7 @@ duplicate dependency on #{dep}, (#{prev.requirement}) use:
|
|
307
307
|
elsif !VALID_NAME_PATTERN.match?(name)
|
308
308
|
error "invalid value for attribute name: #{name.dump} can only include letters, numbers, dashes, and underscores"
|
309
309
|
elsif SPECIAL_CHARACTERS.match?(name)
|
310
|
-
error "invalid value for attribute name: #{name.dump}
|
310
|
+
error "invalid value for attribute name: #{name.dump} cannot begin with a period, dash, or underscore"
|
311
311
|
end
|
312
312
|
end
|
313
313
|
|
@@ -103,7 +103,7 @@ module Gem::Molinillo
|
|
103
103
|
|
104
104
|
# @return [Boolean] where the requirement of the state we're unwinding
|
105
105
|
# to directly caused the conflict. Note: in this case, it is
|
106
|
-
# impossible for the state we're unwinding to
|
106
|
+
# impossible for the state we're unwinding to be a parent of
|
107
107
|
# any of the other conflicting requirements (or we would have
|
108
108
|
# circularity)
|
109
109
|
def unwinding_to_primary_requirement?
|
@@ -4,7 +4,7 @@
|
|
4
4
|
= net/https -- SSL/TLS enhancement for Gem::Net::HTTP.
|
5
5
|
|
6
6
|
This file has been merged with net/http. There is no longer any need to
|
7
|
-
|
7
|
+
require_relative 'https' to use HTTPS.
|
8
8
|
|
9
9
|
See Gem::Net::HTTP for details on how to make HTTPS connections.
|
10
10
|
|
@@ -5,7 +5,7 @@ require_relative '../../timeout/lib/timeout'
|
|
5
5
|
require 'io/wait'
|
6
6
|
|
7
7
|
begin
|
8
|
-
|
8
|
+
require_relative '../../../vendored_securerandom'
|
9
9
|
rescue LoadError
|
10
10
|
end
|
11
11
|
|
@@ -37,7 +37,7 @@ end
|
|
37
37
|
|
38
38
|
class Gem::Resolv
|
39
39
|
|
40
|
-
VERSION = "0.
|
40
|
+
VERSION = "0.4.0"
|
41
41
|
|
42
42
|
##
|
43
43
|
# Looks up the first IP address for +name+.
|
@@ -194,17 +194,10 @@ class Gem::Resolv
|
|
194
194
|
File.open(@filename, 'rb') {|f|
|
195
195
|
f.each {|line|
|
196
196
|
line.sub!(/#.*/, '')
|
197
|
-
addr,
|
197
|
+
addr, *hostnames = line.split(/\s+/)
|
198
198
|
next unless addr
|
199
|
-
@addr2name[addr]
|
200
|
-
@
|
201
|
-
@addr2name[addr].concat(aliases)
|
202
|
-
@name2addr[hostname] = [] unless @name2addr.include? hostname
|
203
|
-
@name2addr[hostname] << addr
|
204
|
-
aliases.each {|n|
|
205
|
-
@name2addr[n] = [] unless @name2addr.include? n
|
206
|
-
@name2addr[n] << addr
|
207
|
-
}
|
199
|
+
(@addr2name[addr] ||= []).concat(hostnames)
|
200
|
+
hostnames.each {|hostname| (@name2addr[hostname] ||= []) << addr}
|
208
201
|
}
|
209
202
|
}
|
210
203
|
@name2addr.each {|name, arr| arr.reverse!}
|
@@ -609,10 +602,10 @@ class Gem::Resolv
|
|
609
602
|
}
|
610
603
|
end
|
611
604
|
|
612
|
-
if defined? SecureRandom
|
605
|
+
if defined? Gem::SecureRandom
|
613
606
|
def self.random(arg) # :nodoc:
|
614
607
|
begin
|
615
|
-
SecureRandom.random_number(arg)
|
608
|
+
Gem::SecureRandom.random_number(arg)
|
616
609
|
rescue NotImplementedError
|
617
610
|
rand(arg)
|
618
611
|
end
|
@@ -2544,8 +2537,70 @@ class Gem::Resolv
|
|
2544
2537
|
TypeValue = 255 # :nodoc:
|
2545
2538
|
end
|
2546
2539
|
|
2540
|
+
##
|
2541
|
+
# CAA resource record defined in RFC 8659
|
2542
|
+
#
|
2543
|
+
# These records identify certificate authority allowed to issue
|
2544
|
+
# certificates for the given domain.
|
2545
|
+
|
2546
|
+
class CAA < Resource
|
2547
|
+
TypeValue = 257
|
2548
|
+
|
2549
|
+
##
|
2550
|
+
# Creates a new CAA for +flags+, +tag+ and +value+.
|
2551
|
+
|
2552
|
+
def initialize(flags, tag, value)
|
2553
|
+
unless (0..255) === flags
|
2554
|
+
raise ArgumentError.new('flags must be an Integer between 0 and 255')
|
2555
|
+
end
|
2556
|
+
unless (1..15) === tag.bytesize
|
2557
|
+
raise ArgumentError.new('length of tag must be between 1 and 15')
|
2558
|
+
end
|
2559
|
+
|
2560
|
+
@flags = flags
|
2561
|
+
@tag = tag
|
2562
|
+
@value = value
|
2563
|
+
end
|
2564
|
+
|
2565
|
+
##
|
2566
|
+
# Flags for this proprty:
|
2567
|
+
# - Bit 0 : 0 = not critical, 1 = critical
|
2568
|
+
|
2569
|
+
attr_reader :flags
|
2570
|
+
|
2571
|
+
##
|
2572
|
+
# Property tag ("issue", "issuewild", "iodef"...).
|
2573
|
+
|
2574
|
+
attr_reader :tag
|
2575
|
+
|
2576
|
+
##
|
2577
|
+
# Property value.
|
2578
|
+
|
2579
|
+
attr_reader :value
|
2580
|
+
|
2581
|
+
##
|
2582
|
+
# Whether the critical flag is set on this property.
|
2583
|
+
|
2584
|
+
def critical?
|
2585
|
+
flags & 0x80 != 0
|
2586
|
+
end
|
2587
|
+
|
2588
|
+
def encode_rdata(msg) # :nodoc:
|
2589
|
+
msg.put_pack('C', @flags)
|
2590
|
+
msg.put_string(@tag)
|
2591
|
+
msg.put_bytes(@value)
|
2592
|
+
end
|
2593
|
+
|
2594
|
+
def self.decode_rdata(msg) # :nodoc:
|
2595
|
+
flags, = msg.get_unpack('C')
|
2596
|
+
tag = msg.get_string
|
2597
|
+
value = msg.get_bytes
|
2598
|
+
self.new flags, tag, value
|
2599
|
+
end
|
2600
|
+
end
|
2601
|
+
|
2547
2602
|
ClassInsensitiveTypes = [ # :nodoc:
|
2548
|
-
NS, CNAME, SOA, PTR, HINFO, MINFO, MX, TXT, LOC, ANY
|
2603
|
+
NS, CNAME, SOA, PTR, HINFO, MINFO, MX, TXT, LOC, ANY, CAA
|
2549
2604
|
]
|
2550
2605
|
|
2551
2606
|
##
|
@@ -2771,7 +2826,7 @@ class Gem::Resolv
|
|
2771
2826
|
attr_reader :target
|
2772
2827
|
|
2773
2828
|
##
|
2774
|
-
# The service
|
2829
|
+
# The service parameters for the target host.
|
2775
2830
|
|
2776
2831
|
attr_reader :params
|
2777
2832
|
|
@@ -0,0 +1 @@
|
|
1
|
+
# Vendored files do not need to be documented
|
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (C) 1993-2013 Yukihiro Matsumoto. All rights reserved.
|
2
|
+
|
3
|
+
Redistribution and use in source and binary forms, with or without
|
4
|
+
modification, are permitted provided that the following conditions
|
5
|
+
are met:
|
6
|
+
1. Redistributions of source code must retain the above copyright
|
7
|
+
notice, this list of conditions and the following disclaimer.
|
8
|
+
2. Redistributions in binary form must reproduce the above copyright
|
9
|
+
notice, this list of conditions and the following disclaimer in the
|
10
|
+
documentation and/or other materials provided with the distribution.
|
11
|
+
|
12
|
+
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
13
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
14
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
15
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
16
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
17
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
18
|
+
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
19
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
20
|
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
21
|
+
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
22
|
+
SUCH DAMAGE.
|
@@ -0,0 +1,373 @@
|
|
1
|
+
# -*- coding: us-ascii -*-
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
# == \Random number formatter.
|
5
|
+
#
|
6
|
+
# Formats generated random numbers in many manners. When <tt>'random/formatter'</tt>
|
7
|
+
# is required, several methods are added to empty core module <tt>Gem::Random::Formatter</tt>,
|
8
|
+
# making them available as Random's instance and module methods.
|
9
|
+
#
|
10
|
+
# Standard library Gem::SecureRandom is also extended with the module, and the methods
|
11
|
+
# described below are available as a module methods in it.
|
12
|
+
#
|
13
|
+
# === Examples
|
14
|
+
#
|
15
|
+
# Generate random hexadecimal strings:
|
16
|
+
#
|
17
|
+
# require 'rubygems/vendor/securerandom/lib/random/formatter'
|
18
|
+
#
|
19
|
+
# prng = Random.new
|
20
|
+
# prng.hex(10) #=> "52750b30ffbc7de3b362"
|
21
|
+
# prng.hex(10) #=> "92b15d6c8dc4beb5f559"
|
22
|
+
# prng.hex(13) #=> "39b290146bea6ce975c37cfc23"
|
23
|
+
# # or just
|
24
|
+
# Random.hex #=> "1aed0c631e41be7f77365415541052ee"
|
25
|
+
#
|
26
|
+
# Generate random base64 strings:
|
27
|
+
#
|
28
|
+
# prng.base64(10) #=> "EcmTPZwWRAozdA=="
|
29
|
+
# prng.base64(10) #=> "KO1nIU+p9DKxGg=="
|
30
|
+
# prng.base64(12) #=> "7kJSM/MzBJI+75j8"
|
31
|
+
# Random.base64(4) #=> "bsQ3fQ=="
|
32
|
+
#
|
33
|
+
# Generate random binary strings:
|
34
|
+
#
|
35
|
+
# prng.random_bytes(10) #=> "\016\t{\370g\310pbr\301"
|
36
|
+
# prng.random_bytes(10) #=> "\323U\030TO\234\357\020\a\337"
|
37
|
+
# Random.random_bytes(6) #=> "\xA1\xE6Lr\xC43"
|
38
|
+
#
|
39
|
+
# Generate alphanumeric strings:
|
40
|
+
#
|
41
|
+
# prng.alphanumeric(10) #=> "S8baxMJnPl"
|
42
|
+
# prng.alphanumeric(10) #=> "aOxAg8BAJe"
|
43
|
+
# Random.alphanumeric #=> "TmP9OsJHJLtaZYhP"
|
44
|
+
#
|
45
|
+
# Generate UUIDs:
|
46
|
+
#
|
47
|
+
# prng.uuid #=> "2d931510-d99f-494a-8c67-87feb05e1594"
|
48
|
+
# prng.uuid #=> "bad85eb9-0713-4da7-8d36-07a8e4b00eab"
|
49
|
+
# Random.uuid #=> "f14e0271-de96-45cc-8911-8910292a42cd"
|
50
|
+
#
|
51
|
+
# All methods are available in the standard library Gem::SecureRandom, too:
|
52
|
+
#
|
53
|
+
# Gem::SecureRandom.hex #=> "05b45376a30c67238eb93b16499e50cf"
|
54
|
+
|
55
|
+
module Gem::Random::Formatter
|
56
|
+
|
57
|
+
# Generate a random binary string.
|
58
|
+
#
|
59
|
+
# The argument _n_ specifies the length of the result string.
|
60
|
+
#
|
61
|
+
# If _n_ is not specified or is nil, 16 is assumed.
|
62
|
+
# It may be larger in future.
|
63
|
+
#
|
64
|
+
# The result may contain any byte: "\x00" - "\xff".
|
65
|
+
#
|
66
|
+
# require 'rubygems/vendor/securerandom/lib/random/formatter'
|
67
|
+
#
|
68
|
+
# Random.random_bytes #=> "\xD8\\\xE0\xF4\r\xB2\xFC*WM\xFF\x83\x18\xF45\xB6"
|
69
|
+
# # or
|
70
|
+
# prng = Random.new
|
71
|
+
# prng.random_bytes #=> "m\xDC\xFC/\a\x00Uf\xB2\xB2P\xBD\xFF6S\x97"
|
72
|
+
def random_bytes(n=nil)
|
73
|
+
n = n ? n.to_int : 16
|
74
|
+
gen_random(n)
|
75
|
+
end
|
76
|
+
|
77
|
+
# Generate a random hexadecimal string.
|
78
|
+
#
|
79
|
+
# The argument _n_ specifies the length, in bytes, of the random number to be generated.
|
80
|
+
# The length of the resulting hexadecimal string is twice of _n_.
|
81
|
+
#
|
82
|
+
# If _n_ is not specified or is nil, 16 is assumed.
|
83
|
+
# It may be larger in the future.
|
84
|
+
#
|
85
|
+
# The result may contain 0-9 and a-f.
|
86
|
+
#
|
87
|
+
# require 'rubygems/vendor/securerandom/lib/random/formatter'
|
88
|
+
#
|
89
|
+
# Random.hex #=> "eb693ec8252cd630102fd0d0fb7c3485"
|
90
|
+
# # or
|
91
|
+
# prng = Random.new
|
92
|
+
# prng.hex #=> "91dc3bfb4de5b11d029d376634589b61"
|
93
|
+
def hex(n=nil)
|
94
|
+
random_bytes(n).unpack1("H*")
|
95
|
+
end
|
96
|
+
|
97
|
+
# Generate a random base64 string.
|
98
|
+
#
|
99
|
+
# The argument _n_ specifies the length, in bytes, of the random number
|
100
|
+
# to be generated. The length of the result string is about 4/3 of _n_.
|
101
|
+
#
|
102
|
+
# If _n_ is not specified or is nil, 16 is assumed.
|
103
|
+
# It may be larger in the future.
|
104
|
+
#
|
105
|
+
# The result may contain A-Z, a-z, 0-9, "+", "/" and "=".
|
106
|
+
#
|
107
|
+
# require 'rubygems/vendor/securerandom/lib/random/formatter'
|
108
|
+
#
|
109
|
+
# Random.base64 #=> "/2BuBuLf3+WfSKyQbRcc/A=="
|
110
|
+
# # or
|
111
|
+
# prng = Random.new
|
112
|
+
# prng.base64 #=> "6BbW0pxO0YENxn38HMUbcQ=="
|
113
|
+
#
|
114
|
+
# See RFC 3548 for the definition of base64.
|
115
|
+
def base64(n=nil)
|
116
|
+
[random_bytes(n)].pack("m0")
|
117
|
+
end
|
118
|
+
|
119
|
+
# Generate a random URL-safe base64 string.
|
120
|
+
#
|
121
|
+
# The argument _n_ specifies the length, in bytes, of the random number
|
122
|
+
# to be generated. The length of the result string is about 4/3 of _n_.
|
123
|
+
#
|
124
|
+
# If _n_ is not specified or is nil, 16 is assumed.
|
125
|
+
# It may be larger in the future.
|
126
|
+
#
|
127
|
+
# The boolean argument _padding_ specifies the padding.
|
128
|
+
# If it is false or nil, padding is not generated.
|
129
|
+
# Otherwise padding is generated.
|
130
|
+
# By default, padding is not generated because "=" may be used as a URL delimiter.
|
131
|
+
#
|
132
|
+
# The result may contain A-Z, a-z, 0-9, "-" and "_".
|
133
|
+
# "=" is also used if _padding_ is true.
|
134
|
+
#
|
135
|
+
# require 'rubygems/vendor/securerandom/lib/random/formatter'
|
136
|
+
#
|
137
|
+
# Random.urlsafe_base64 #=> "b4GOKm4pOYU_-BOXcrUGDg"
|
138
|
+
# # or
|
139
|
+
# prng = Random.new
|
140
|
+
# prng.urlsafe_base64 #=> "UZLdOkzop70Ddx-IJR0ABg"
|
141
|
+
#
|
142
|
+
# prng.urlsafe_base64(nil, true) #=> "i0XQ-7gglIsHGV2_BNPrdQ=="
|
143
|
+
# prng.urlsafe_base64(nil, true) #=> "-M8rLhr7JEpJlqFGUMmOxg=="
|
144
|
+
#
|
145
|
+
# See RFC 3548 for the definition of URL-safe base64.
|
146
|
+
def urlsafe_base64(n=nil, padding=false)
|
147
|
+
s = [random_bytes(n)].pack("m0")
|
148
|
+
s.tr!("+/", "-_")
|
149
|
+
s.delete!("=") unless padding
|
150
|
+
s
|
151
|
+
end
|
152
|
+
|
153
|
+
# Generate a random v4 UUID (Universally Unique IDentifier).
|
154
|
+
#
|
155
|
+
# require 'rubygems/vendor/securerandom/lib/random/formatter'
|
156
|
+
#
|
157
|
+
# Random.uuid #=> "2d931510-d99f-494a-8c67-87feb05e1594"
|
158
|
+
# Random.uuid #=> "bad85eb9-0713-4da7-8d36-07a8e4b00eab"
|
159
|
+
# # or
|
160
|
+
# prng = Random.new
|
161
|
+
# prng.uuid #=> "62936e70-1815-439b-bf89-8492855a7e6b"
|
162
|
+
#
|
163
|
+
# The version 4 UUID is purely random (except the version).
|
164
|
+
# It doesn't contain meaningful information such as MAC addresses, timestamps, etc.
|
165
|
+
#
|
166
|
+
# The result contains 122 random bits (15.25 random bytes).
|
167
|
+
#
|
168
|
+
# See RFC4122[https://datatracker.ietf.org/doc/html/rfc4122] for details of UUID.
|
169
|
+
#
|
170
|
+
def uuid
|
171
|
+
ary = random_bytes(16).unpack("NnnnnN")
|
172
|
+
ary[2] = (ary[2] & 0x0fff) | 0x4000
|
173
|
+
ary[3] = (ary[3] & 0x3fff) | 0x8000
|
174
|
+
"%08x-%04x-%04x-%04x-%04x%08x" % ary
|
175
|
+
end
|
176
|
+
|
177
|
+
alias uuid_v4 uuid
|
178
|
+
|
179
|
+
# Generate a random v7 UUID (Universally Unique IDentifier).
|
180
|
+
#
|
181
|
+
# require 'rubygems/vendor/securerandom/lib/random/formatter'
|
182
|
+
#
|
183
|
+
# Random.uuid_v7 # => "0188d4c3-1311-7f96-85c7-242a7aa58f1e"
|
184
|
+
# Random.uuid_v7 # => "0188d4c3-16fe-744f-86af-38fa04c62bb5"
|
185
|
+
# Random.uuid_v7 # => "0188d4c3-1af8-764f-b049-c204ce0afa23"
|
186
|
+
# Random.uuid_v7 # => "0188d4c3-1e74-7085-b14f-ef6415dc6f31"
|
187
|
+
# # |<--sorted-->| |<----- random ---->|
|
188
|
+
#
|
189
|
+
# # or
|
190
|
+
# prng = Random.new
|
191
|
+
# prng.uuid_v7 # => "0188ca51-5e72-7950-a11d-def7ff977c98"
|
192
|
+
#
|
193
|
+
# The version 7 UUID starts with the least significant 48 bits of a 64 bit
|
194
|
+
# Unix timestamp (milliseconds since the epoch) and fills the remaining bits
|
195
|
+
# with random data, excluding the version and variant bits.
|
196
|
+
#
|
197
|
+
# This allows version 7 UUIDs to be sorted by creation time. Time ordered
|
198
|
+
# UUIDs can be used for better database index locality of newly inserted
|
199
|
+
# records, which may have a significant performance benefit compared to random
|
200
|
+
# data inserts.
|
201
|
+
#
|
202
|
+
# The result contains 74 random bits (9.25 random bytes).
|
203
|
+
#
|
204
|
+
# Note that this method cannot be made reproducable because its output
|
205
|
+
# includes not only random bits but also timestamp.
|
206
|
+
#
|
207
|
+
# See draft-ietf-uuidrev-rfc4122bis[https://datatracker.ietf.org/doc/draft-ietf-uuidrev-rfc4122bis/]
|
208
|
+
# for details of UUIDv7.
|
209
|
+
#
|
210
|
+
# ==== Monotonicity
|
211
|
+
#
|
212
|
+
# UUIDv7 has millisecond precision by default, so multiple UUIDs created
|
213
|
+
# within the same millisecond are not issued in monotonically increasing
|
214
|
+
# order. To create UUIDs that are time-ordered with sub-millisecond
|
215
|
+
# precision, up to 12 bits of additional timestamp may added with
|
216
|
+
# +extra_timestamp_bits+. The extra timestamp precision comes at the expense
|
217
|
+
# of random bits. Setting <tt>extra_timestamp_bits: 12</tt> provides ~244ns
|
218
|
+
# of precision, but only 62 random bits (7.75 random bytes).
|
219
|
+
#
|
220
|
+
# prng = Random.new
|
221
|
+
# Array.new(4) { prng.uuid_v7(extra_timestamp_bits: 12) }
|
222
|
+
# # =>
|
223
|
+
# ["0188d4c7-13da-74f9-8b53-22a786ffdd5a",
|
224
|
+
# "0188d4c7-13da-753b-83a5-7fb9b2afaeea",
|
225
|
+
# "0188d4c7-13da-754a-88ea-ac0baeedd8db",
|
226
|
+
# "0188d4c7-13da-7557-83e1-7cad9cda0d8d"]
|
227
|
+
# # |<--- sorted --->| |<-- random --->|
|
228
|
+
#
|
229
|
+
# Array.new(4) { prng.uuid_v7(extra_timestamp_bits: 8) }
|
230
|
+
# # =>
|
231
|
+
# ["0188d4c7-3333-7a95-850a-de6edb858f7e",
|
232
|
+
# "0188d4c7-3333-7ae8-842e-bc3a8b7d0cf9", # <- out of order
|
233
|
+
# "0188d4c7-3333-7ae2-995a-9f135dc44ead", # <- out of order
|
234
|
+
# "0188d4c7-3333-7af9-87c3-8f612edac82e"]
|
235
|
+
# # |<--- sorted -->||<---- random --->|
|
236
|
+
#
|
237
|
+
# Any rollbacks of the system clock will break monotonicity. UUIDv7 is based
|
238
|
+
# on UTC, which excludes leap seconds and can rollback the clock. To avoid
|
239
|
+
# this, the system clock can synchronize with an NTP server configured to use
|
240
|
+
# a "leap smear" approach. NTP or PTP will also be needed to synchronize
|
241
|
+
# across distributed nodes.
|
242
|
+
#
|
243
|
+
# Counters and other mechanisms for stronger guarantees of monotonicity are
|
244
|
+
# not implemented. Applications with stricter requirements should follow
|
245
|
+
# {Section 6.2}[https://www.ietf.org/archive/id/draft-ietf-uuidrev-rfc4122bis-07.html#monotonicity_counters]
|
246
|
+
# of the specification.
|
247
|
+
#
|
248
|
+
def uuid_v7(extra_timestamp_bits: 0)
|
249
|
+
case (extra_timestamp_bits = Integer(extra_timestamp_bits))
|
250
|
+
when 0 # min timestamp precision
|
251
|
+
ms = Process.clock_gettime(Process::CLOCK_REALTIME, :millisecond)
|
252
|
+
rand = random_bytes(10)
|
253
|
+
rand.setbyte(0, rand.getbyte(0) & 0x0f | 0x70) # version
|
254
|
+
rand.setbyte(2, rand.getbyte(2) & 0x3f | 0x80) # variant
|
255
|
+
"%08x-%04x-%s" % [
|
256
|
+
(ms & 0x0000_ffff_ffff_0000) >> 16,
|
257
|
+
(ms & 0x0000_0000_0000_ffff),
|
258
|
+
rand.unpack("H4H4H12").join("-")
|
259
|
+
]
|
260
|
+
|
261
|
+
when 12 # max timestamp precision
|
262
|
+
ms, ns = Process.clock_gettime(Process::CLOCK_REALTIME, :nanosecond)
|
263
|
+
.divmod(1_000_000)
|
264
|
+
extra_bits = ns * 4096 / 1_000_000
|
265
|
+
rand = random_bytes(8)
|
266
|
+
rand.setbyte(0, rand.getbyte(0) & 0x3f | 0x80) # variant
|
267
|
+
"%08x-%04x-7%03x-%s" % [
|
268
|
+
(ms & 0x0000_ffff_ffff_0000) >> 16,
|
269
|
+
(ms & 0x0000_0000_0000_ffff),
|
270
|
+
extra_bits,
|
271
|
+
rand.unpack("H4H12").join("-")
|
272
|
+
]
|
273
|
+
|
274
|
+
when (0..12) # the generic version is slower than the special cases above
|
275
|
+
rand_a, rand_b1, rand_b2, rand_b3 = random_bytes(10).unpack("nnnN")
|
276
|
+
rand_mask_bits = 12 - extra_timestamp_bits
|
277
|
+
ms, ns = Process.clock_gettime(Process::CLOCK_REALTIME, :nanosecond)
|
278
|
+
.divmod(1_000_000)
|
279
|
+
"%08x-%04x-%04x-%04x-%04x%08x" % [
|
280
|
+
(ms & 0x0000_ffff_ffff_0000) >> 16,
|
281
|
+
(ms & 0x0000_0000_0000_ffff),
|
282
|
+
0x7000 |
|
283
|
+
((ns * (1 << extra_timestamp_bits) / 1_000_000) << rand_mask_bits) |
|
284
|
+
rand_a & ((1 << rand_mask_bits) - 1),
|
285
|
+
0x8000 | (rand_b1 & 0x3fff),
|
286
|
+
rand_b2,
|
287
|
+
rand_b3
|
288
|
+
]
|
289
|
+
|
290
|
+
else
|
291
|
+
raise ArgumentError, "extra_timestamp_bits must be in 0..12"
|
292
|
+
end
|
293
|
+
end
|
294
|
+
|
295
|
+
# Internal interface to Random; Generate random data _n_ bytes.
|
296
|
+
private def gen_random(n)
|
297
|
+
self.bytes(n)
|
298
|
+
end
|
299
|
+
|
300
|
+
# Generate a string that randomly draws from a
|
301
|
+
# source array of characters.
|
302
|
+
#
|
303
|
+
# The argument _source_ specifies the array of characters from which
|
304
|
+
# to generate the string.
|
305
|
+
# The argument _n_ specifies the length, in characters, of the string to be
|
306
|
+
# generated.
|
307
|
+
#
|
308
|
+
# The result may contain whatever characters are in the source array.
|
309
|
+
#
|
310
|
+
# require 'rubygems/vendor/securerandom/lib/random/formatter'
|
311
|
+
#
|
312
|
+
# prng.choose([*'l'..'r'], 16) #=> "lmrqpoonmmlqlron"
|
313
|
+
# prng.choose([*'0'..'9'], 5) #=> "27309"
|
314
|
+
private def choose(source, n)
|
315
|
+
size = source.size
|
316
|
+
m = 1
|
317
|
+
limit = size
|
318
|
+
while limit * size <= 0x100000000
|
319
|
+
limit *= size
|
320
|
+
m += 1
|
321
|
+
end
|
322
|
+
result = ''.dup
|
323
|
+
while m <= n
|
324
|
+
rs = random_number(limit)
|
325
|
+
is = rs.digits(size)
|
326
|
+
(m-is.length).times { is << 0 }
|
327
|
+
result << source.values_at(*is).join('')
|
328
|
+
n -= m
|
329
|
+
end
|
330
|
+
if 0 < n
|
331
|
+
rs = random_number(limit)
|
332
|
+
is = rs.digits(size)
|
333
|
+
if is.length < n
|
334
|
+
(n-is.length).times { is << 0 }
|
335
|
+
else
|
336
|
+
is.pop while n < is.length
|
337
|
+
end
|
338
|
+
result.concat source.values_at(*is).join('')
|
339
|
+
end
|
340
|
+
result
|
341
|
+
end
|
342
|
+
|
343
|
+
# The default character list for #alphanumeric.
|
344
|
+
ALPHANUMERIC = [*'A'..'Z', *'a'..'z', *'0'..'9']
|
345
|
+
|
346
|
+
# Generate a random alphanumeric string.
|
347
|
+
#
|
348
|
+
# The argument _n_ specifies the length, in characters, of the alphanumeric
|
349
|
+
# string to be generated.
|
350
|
+
# The argument _chars_ specifies the character list which the result is
|
351
|
+
# consist of.
|
352
|
+
#
|
353
|
+
# If _n_ is not specified or is nil, 16 is assumed.
|
354
|
+
# It may be larger in the future.
|
355
|
+
#
|
356
|
+
# The result may contain A-Z, a-z and 0-9, unless _chars_ is specified.
|
357
|
+
#
|
358
|
+
# require 'rubygems/vendor/securerandom/lib/random/formatter'
|
359
|
+
#
|
360
|
+
# Random.alphanumeric #=> "2BuBuLf3WfSKyQbR"
|
361
|
+
# # or
|
362
|
+
# prng = Random.new
|
363
|
+
# prng.alphanumeric(10) #=> "i6K93NdqiH"
|
364
|
+
#
|
365
|
+
# Random.alphanumeric(4, chars: [*"0".."9"]) #=> "2952"
|
366
|
+
# # or
|
367
|
+
# prng = Random.new
|
368
|
+
# prng.alphanumeric(10, chars: [*"!".."/"]) #=> ",.,++%/''."
|
369
|
+
def alphanumeric(n = nil, chars: ALPHANUMERIC)
|
370
|
+
n = 16 if n.nil?
|
371
|
+
choose(chars, n)
|
372
|
+
end
|
373
|
+
end
|