securerandom 0.1.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/{LICENSE.txt → BSDL} +3 -3
- data/COPYING +56 -0
- data/lib/securerandom.rb +30 -245
- metadata +6 -12
- data/.github/workflows/test.yml +0 -24
- data/.gitignore +0 -8
- data/Gemfile +0 -4
- data/Rakefile +0 -10
- data/bin/console +0 -14
- data/bin/setup +0 -8
- data/securerandom.gemspec +0 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4d1e553e66963e86b8c31aeaca8030543f034770d4c91652e905e7d24101a267
|
4
|
+
data.tar.gz: b9088d38e62d77718b8cdf44f12e5027763bfc49d08e98e2190cac40217a53e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dd175de6c33318073d7eeae18ed42bbd797f425ebcfcddcfd4d91cc9256fcd9b4ee96d9ef409e2817a49cdfc5f3a85496018a5642ce62124d09212c8b48348c8
|
7
|
+
data.tar.gz: 51914a9cfa12a128634135d650b9213a5aab22005542ad1fd79fa74b1456a3388def2ba1d13255262437a22e971fd888eeaaac63121111fa5a245b2429d99889
|
data/{LICENSE.txt → BSDL}
RENAMED
@@ -4,10 +4,10 @@ Redistribution and use in source and binary forms, with or without
|
|
4
4
|
modification, are permitted provided that the following conditions
|
5
5
|
are met:
|
6
6
|
1. Redistributions of source code must retain the above copyright
|
7
|
-
notice, this list of conditions and the following disclaimer.
|
7
|
+
notice, this list of conditions and the following disclaimer.
|
8
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.
|
9
|
+
notice, this list of conditions and the following disclaimer in the
|
10
|
+
documentation and/or other materials provided with the distribution.
|
11
11
|
|
12
12
|
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
13
13
|
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
data/COPYING
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.jp>.
|
2
|
+
You can redistribute it and/or modify it under either the terms of the
|
3
|
+
2-clause BSDL (see the file BSDL), or the conditions below:
|
4
|
+
|
5
|
+
1. You may make and give away verbatim copies of the source form of the
|
6
|
+
software without restriction, provided that you duplicate all of the
|
7
|
+
original copyright notices and associated disclaimers.
|
8
|
+
|
9
|
+
2. You may modify your copy of the software in any way, provided that
|
10
|
+
you do at least ONE of the following:
|
11
|
+
|
12
|
+
a. place your modifications in the Public Domain or otherwise
|
13
|
+
make them Freely Available, such as by posting said
|
14
|
+
modifications to Usenet or an equivalent medium, or by allowing
|
15
|
+
the author to include your modifications in the software.
|
16
|
+
|
17
|
+
b. use the modified software only within your corporation or
|
18
|
+
organization.
|
19
|
+
|
20
|
+
c. give non-standard binaries non-standard names, with
|
21
|
+
instructions on where to get the original software distribution.
|
22
|
+
|
23
|
+
d. make other distribution arrangements with the author.
|
24
|
+
|
25
|
+
3. You may distribute the software in object code or binary form,
|
26
|
+
provided that you do at least ONE of the following:
|
27
|
+
|
28
|
+
a. distribute the binaries and library files of the software,
|
29
|
+
together with instructions (in the manual page or equivalent)
|
30
|
+
on where to get the original distribution.
|
31
|
+
|
32
|
+
b. accompany the distribution with the machine-readable source of
|
33
|
+
the software.
|
34
|
+
|
35
|
+
c. give non-standard binaries non-standard names, with
|
36
|
+
instructions on where to get the original software distribution.
|
37
|
+
|
38
|
+
d. make other distribution arrangements with the author.
|
39
|
+
|
40
|
+
4. You may modify and include the part of the software into any other
|
41
|
+
software (possibly commercial). But some files in the distribution
|
42
|
+
are not written by the author, so that they are not under these terms.
|
43
|
+
|
44
|
+
For the list of those files and their copying conditions, see the
|
45
|
+
file LEGAL.
|
46
|
+
|
47
|
+
5. The scripts and library files supplied as input to or produced as
|
48
|
+
output from the software do not automatically fall under the
|
49
|
+
copyright of the software, but belong to whomever generated them,
|
50
|
+
and may be sold commercially, and may be aggregated with this
|
51
|
+
software.
|
52
|
+
|
53
|
+
6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
|
54
|
+
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
55
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
56
|
+
PURPOSE.
|
data/lib/securerandom.rb
CHANGED
@@ -1,6 +1,8 @@
|
|
1
1
|
# -*- coding: us-ascii -*-
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
|
+
require 'random/formatter'
|
5
|
+
|
4
6
|
# == Secure random number generator interface.
|
5
7
|
#
|
6
8
|
# This library is an interface to secure random number generators which are
|
@@ -31,63 +33,40 @@
|
|
31
33
|
# * uuid
|
32
34
|
#
|
33
35
|
# These methods are usable as class methods of SecureRandom such as
|
34
|
-
#
|
35
|
-
#
|
36
|
-
# === Examples
|
37
|
-
#
|
38
|
-
# Generate random hexadecimal strings:
|
39
|
-
#
|
40
|
-
# require 'securerandom'
|
41
|
-
#
|
42
|
-
# SecureRandom.hex(10) #=> "52750b30ffbc7de3b362"
|
43
|
-
# SecureRandom.hex(10) #=> "92b15d6c8dc4beb5f559"
|
44
|
-
# SecureRandom.hex(13) #=> "39b290146bea6ce975c37cfc23"
|
45
|
-
#
|
46
|
-
# Generate random base64 strings:
|
47
|
-
#
|
48
|
-
# SecureRandom.base64(10) #=> "EcmTPZwWRAozdA=="
|
49
|
-
# SecureRandom.base64(10) #=> "KO1nIU+p9DKxGg=="
|
50
|
-
# SecureRandom.base64(12) #=> "7kJSM/MzBJI+75j8"
|
51
|
-
#
|
52
|
-
# Generate random binary strings:
|
53
|
-
#
|
54
|
-
# SecureRandom.random_bytes(10) #=> "\016\t{\370g\310pbr\301"
|
55
|
-
# SecureRandom.random_bytes(10) #=> "\323U\030TO\234\357\020\a\337"
|
56
|
-
#
|
57
|
-
# Generate alphanumeric strings:
|
58
|
-
#
|
59
|
-
# SecureRandom.alphanumeric(10) #=> "S8baxMJnPl"
|
60
|
-
# SecureRandom.alphanumeric(10) #=> "aOxAg8BAJe"
|
61
|
-
#
|
62
|
-
# Generate UUIDs:
|
63
|
-
#
|
64
|
-
# SecureRandom.uuid #=> "2d931510-d99f-494a-8c67-87feb05e1594"
|
65
|
-
# SecureRandom.uuid #=> "bad85eb9-0713-4da7-8d36-07a8e4b00eab"
|
36
|
+
# +SecureRandom.hex+.
|
66
37
|
#
|
38
|
+
# If a secure random number generator is not available,
|
39
|
+
# +NotImplementedError+ is raised.
|
67
40
|
|
68
41
|
module SecureRandom
|
42
|
+
|
43
|
+
# The version
|
44
|
+
VERSION = "0.4.1"
|
45
|
+
|
69
46
|
class << self
|
47
|
+
# Returns a random binary string containing +size+ bytes.
|
48
|
+
#
|
49
|
+
# See Random.bytes
|
70
50
|
def bytes(n)
|
71
51
|
return gen_random(n)
|
72
52
|
end
|
73
53
|
|
54
|
+
# Compatibility methods for Ruby 3.2, we can remove this after dropping to support Ruby 3.2
|
55
|
+
def alphanumeric(n = nil, chars: ALPHANUMERIC)
|
56
|
+
n = 16 if n.nil?
|
57
|
+
choose(chars, n)
|
58
|
+
end if RUBY_VERSION < '3.3'
|
59
|
+
|
74
60
|
private
|
75
61
|
|
62
|
+
# :stopdoc:
|
63
|
+
|
64
|
+
# Implementation using OpenSSL
|
76
65
|
def gen_random_openssl(n)
|
77
|
-
@pid = 0 unless defined?(@pid)
|
78
|
-
pid = $$
|
79
|
-
unless @pid == pid
|
80
|
-
now = Process.clock_gettime(Process::CLOCK_REALTIME, :nanosecond)
|
81
|
-
OpenSSL::Random.random_add([now, @pid, pid].join(""), 0.0)
|
82
|
-
seed = Random.urandom(16)
|
83
|
-
if (seed)
|
84
|
-
OpenSSL::Random.random_add(seed, 16)
|
85
|
-
end
|
86
|
-
@pid = pid
|
87
|
-
end
|
88
66
|
return OpenSSL::Random.random_bytes(n)
|
89
67
|
end
|
90
68
|
|
69
|
+
# Implementation using system random device
|
91
70
|
def gen_random_urandom(n)
|
92
71
|
ret = Random.urandom(n)
|
93
72
|
unless ret
|
@@ -99,8 +78,11 @@ module SecureRandom
|
|
99
78
|
ret
|
100
79
|
end
|
101
80
|
|
102
|
-
|
103
|
-
|
81
|
+
begin
|
82
|
+
# Check if Random.urandom is available
|
83
|
+
Random.urandom(1)
|
84
|
+
alias gen_random gen_random_urandom
|
85
|
+
rescue RuntimeError
|
104
86
|
begin
|
105
87
|
require 'openssl'
|
106
88
|
rescue NoMethodError
|
@@ -108,209 +90,12 @@ module SecureRandom
|
|
108
90
|
else
|
109
91
|
alias gen_random gen_random_openssl
|
110
92
|
end
|
111
|
-
else
|
112
|
-
alias gen_random gen_random_urandom
|
113
93
|
end
|
114
94
|
|
115
|
-
|
116
|
-
end
|
117
|
-
end
|
118
|
-
|
119
|
-
module Random::Formatter
|
120
|
-
|
121
|
-
# SecureRandom.random_bytes generates a random binary string.
|
122
|
-
#
|
123
|
-
# The argument _n_ specifies the length of the result string.
|
124
|
-
#
|
125
|
-
# If _n_ is not specified or is nil, 16 is assumed.
|
126
|
-
# It may be larger in future.
|
127
|
-
#
|
128
|
-
# The result may contain any byte: "\x00" - "\xff".
|
129
|
-
#
|
130
|
-
# require 'securerandom'
|
131
|
-
#
|
132
|
-
# SecureRandom.random_bytes #=> "\xD8\\\xE0\xF4\r\xB2\xFC*WM\xFF\x83\x18\xF45\xB6"
|
133
|
-
# SecureRandom.random_bytes #=> "m\xDC\xFC/\a\x00Uf\xB2\xB2P\xBD\xFF6S\x97"
|
134
|
-
#
|
135
|
-
# If a secure random number generator is not available,
|
136
|
-
# +NotImplementedError+ is raised.
|
137
|
-
def random_bytes(n=nil)
|
138
|
-
n = n ? n.to_int : 16
|
139
|
-
gen_random(n)
|
140
|
-
end
|
141
|
-
|
142
|
-
# SecureRandom.hex generates a random hexadecimal string.
|
143
|
-
#
|
144
|
-
# The argument _n_ specifies the length, in bytes, of the random number to be generated.
|
145
|
-
# The length of the resulting hexadecimal string is twice of _n_.
|
146
|
-
#
|
147
|
-
# If _n_ is not specified or is nil, 16 is assumed.
|
148
|
-
# It may be larger in the future.
|
149
|
-
#
|
150
|
-
# The result may contain 0-9 and a-f.
|
151
|
-
#
|
152
|
-
# require 'securerandom'
|
153
|
-
#
|
154
|
-
# SecureRandom.hex #=> "eb693ec8252cd630102fd0d0fb7c3485"
|
155
|
-
# SecureRandom.hex #=> "91dc3bfb4de5b11d029d376634589b61"
|
156
|
-
#
|
157
|
-
# If a secure random number generator is not available,
|
158
|
-
# +NotImplementedError+ is raised.
|
159
|
-
def hex(n=nil)
|
160
|
-
random_bytes(n).unpack("H*")[0]
|
161
|
-
end
|
162
|
-
|
163
|
-
# SecureRandom.base64 generates a random base64 string.
|
164
|
-
#
|
165
|
-
# The argument _n_ specifies the length, in bytes, of the random number
|
166
|
-
# to be generated. The length of the result string is about 4/3 of _n_.
|
167
|
-
#
|
168
|
-
# If _n_ is not specified or is nil, 16 is assumed.
|
169
|
-
# It may be larger in the future.
|
170
|
-
#
|
171
|
-
# The result may contain A-Z, a-z, 0-9, "+", "/" and "=".
|
172
|
-
#
|
173
|
-
# require 'securerandom'
|
174
|
-
#
|
175
|
-
# SecureRandom.base64 #=> "/2BuBuLf3+WfSKyQbRcc/A=="
|
176
|
-
# SecureRandom.base64 #=> "6BbW0pxO0YENxn38HMUbcQ=="
|
177
|
-
#
|
178
|
-
# If a secure random number generator is not available,
|
179
|
-
# +NotImplementedError+ is raised.
|
180
|
-
#
|
181
|
-
# See RFC 3548 for the definition of base64.
|
182
|
-
def base64(n=nil)
|
183
|
-
[random_bytes(n)].pack("m0")
|
184
|
-
end
|
185
|
-
|
186
|
-
# SecureRandom.urlsafe_base64 generates a random URL-safe base64 string.
|
187
|
-
#
|
188
|
-
# The argument _n_ specifies the length, in bytes, of the random number
|
189
|
-
# to be generated. The length of the result string is about 4/3 of _n_.
|
190
|
-
#
|
191
|
-
# If _n_ is not specified or is nil, 16 is assumed.
|
192
|
-
# It may be larger in the future.
|
193
|
-
#
|
194
|
-
# The boolean argument _padding_ specifies the padding.
|
195
|
-
# If it is false or nil, padding is not generated.
|
196
|
-
# Otherwise padding is generated.
|
197
|
-
# By default, padding is not generated because "=" may be used as a URL delimiter.
|
198
|
-
#
|
199
|
-
# The result may contain A-Z, a-z, 0-9, "-" and "_".
|
200
|
-
# "=" is also used if _padding_ is true.
|
201
|
-
#
|
202
|
-
# require 'securerandom'
|
203
|
-
#
|
204
|
-
# SecureRandom.urlsafe_base64 #=> "b4GOKm4pOYU_-BOXcrUGDg"
|
205
|
-
# SecureRandom.urlsafe_base64 #=> "UZLdOkzop70Ddx-IJR0ABg"
|
206
|
-
#
|
207
|
-
# SecureRandom.urlsafe_base64(nil, true) #=> "i0XQ-7gglIsHGV2_BNPrdQ=="
|
208
|
-
# SecureRandom.urlsafe_base64(nil, true) #=> "-M8rLhr7JEpJlqFGUMmOxg=="
|
209
|
-
#
|
210
|
-
# If a secure random number generator is not available,
|
211
|
-
# +NotImplementedError+ is raised.
|
212
|
-
#
|
213
|
-
# See RFC 3548 for the definition of URL-safe base64.
|
214
|
-
def urlsafe_base64(n=nil, padding=false)
|
215
|
-
s = [random_bytes(n)].pack("m0")
|
216
|
-
s.tr!("+/", "-_")
|
217
|
-
s.delete!("=") unless padding
|
218
|
-
s
|
219
|
-
end
|
220
|
-
|
221
|
-
# SecureRandom.uuid generates a random v4 UUID (Universally Unique IDentifier).
|
222
|
-
#
|
223
|
-
# require 'securerandom'
|
224
|
-
#
|
225
|
-
# SecureRandom.uuid #=> "2d931510-d99f-494a-8c67-87feb05e1594"
|
226
|
-
# SecureRandom.uuid #=> "bad85eb9-0713-4da7-8d36-07a8e4b00eab"
|
227
|
-
# SecureRandom.uuid #=> "62936e70-1815-439b-bf89-8492855a7e6b"
|
228
|
-
#
|
229
|
-
# The version 4 UUID is purely random (except the version).
|
230
|
-
# It doesn't contain meaningful information such as MAC addresses, timestamps, etc.
|
231
|
-
#
|
232
|
-
# The result contains 122 random bits (15.25 random bytes).
|
233
|
-
#
|
234
|
-
# See RFC 4122 for details of UUID.
|
235
|
-
#
|
236
|
-
def uuid
|
237
|
-
ary = random_bytes(16).unpack("NnnnnN")
|
238
|
-
ary[2] = (ary[2] & 0x0fff) | 0x4000
|
239
|
-
ary[3] = (ary[3] & 0x3fff) | 0x8000
|
240
|
-
"%08x-%04x-%04x-%04x-%04x%08x" % ary
|
241
|
-
end
|
242
|
-
|
243
|
-
private def gen_random(n)
|
244
|
-
self.bytes(n)
|
245
|
-
end
|
95
|
+
# :startdoc:
|
246
96
|
|
247
|
-
|
248
|
-
|
249
|
-
#
|
250
|
-
# The argument _source_ specifies the array of characters from which
|
251
|
-
# to generate the string.
|
252
|
-
# The argument _n_ specifies the length, in characters, of the string to be
|
253
|
-
# generated.
|
254
|
-
#
|
255
|
-
# The result may contain whatever characters are in the source array.
|
256
|
-
#
|
257
|
-
# require 'securerandom'
|
258
|
-
#
|
259
|
-
# SecureRandom.choose([*'l'..'r'], 16) #=> "lmrqpoonmmlqlron"
|
260
|
-
# SecureRandom.choose([*'0'..'9'], 5) #=> "27309"
|
261
|
-
#
|
262
|
-
# If a secure random number generator is not available,
|
263
|
-
# +NotImplementedError+ is raised.
|
264
|
-
private def choose(source, n)
|
265
|
-
size = source.size
|
266
|
-
m = 1
|
267
|
-
limit = size
|
268
|
-
while limit * size <= 0x100000000
|
269
|
-
limit *= size
|
270
|
-
m += 1
|
271
|
-
end
|
272
|
-
result = ''.dup
|
273
|
-
while m <= n
|
274
|
-
rs = random_number(limit)
|
275
|
-
is = rs.digits(size)
|
276
|
-
(m-is.length).times { is << 0 }
|
277
|
-
result << source.values_at(*is).join('')
|
278
|
-
n -= m
|
279
|
-
end
|
280
|
-
if 0 < n
|
281
|
-
rs = random_number(limit)
|
282
|
-
is = rs.digits(size)
|
283
|
-
if is.length < n
|
284
|
-
(n-is.length).times { is << 0 }
|
285
|
-
else
|
286
|
-
is.pop while n < is.length
|
287
|
-
end
|
288
|
-
result.concat source.values_at(*is).join('')
|
289
|
-
end
|
290
|
-
result
|
291
|
-
end
|
292
|
-
|
293
|
-
ALPHANUMERIC = [*'A'..'Z', *'a'..'z', *'0'..'9']
|
294
|
-
# SecureRandom.alphanumeric generates a random alphanumeric string.
|
295
|
-
#
|
296
|
-
# The argument _n_ specifies the length, in characters, of the alphanumeric
|
297
|
-
# string to be generated.
|
298
|
-
#
|
299
|
-
# If _n_ is not specified or is nil, 16 is assumed.
|
300
|
-
# It may be larger in the future.
|
301
|
-
#
|
302
|
-
# The result may contain A-Z, a-z and 0-9.
|
303
|
-
#
|
304
|
-
# require 'securerandom'
|
305
|
-
#
|
306
|
-
# SecureRandom.alphanumeric #=> "2BuBuLf3WfSKyQbR"
|
307
|
-
# SecureRandom.alphanumeric(10) #=> "i6K93NdqiH"
|
308
|
-
#
|
309
|
-
# If a secure random number generator is not available,
|
310
|
-
# +NotImplementedError+ is raised.
|
311
|
-
def alphanumeric(n=nil)
|
312
|
-
n = 16 if n.nil?
|
313
|
-
choose(ALPHANUMERIC, n)
|
97
|
+
# Generate random data bytes for Random::Formatter
|
98
|
+
public :gen_random
|
314
99
|
end
|
315
100
|
end
|
316
101
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: securerandom
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tanaka Akira
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-12-16 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Interface for secure random number generator.
|
14
14
|
email:
|
@@ -17,16 +17,10 @@ executables: []
|
|
17
17
|
extensions: []
|
18
18
|
extra_rdoc_files: []
|
19
19
|
files:
|
20
|
-
-
|
21
|
-
-
|
22
|
-
- Gemfile
|
23
|
-
- LICENSE.txt
|
20
|
+
- BSDL
|
21
|
+
- COPYING
|
24
22
|
- README.md
|
25
|
-
- Rakefile
|
26
|
-
- bin/console
|
27
|
-
- bin/setup
|
28
23
|
- lib/securerandom.rb
|
29
|
-
- securerandom.gemspec
|
30
24
|
homepage: https://github.com/ruby/securerandom
|
31
25
|
licenses:
|
32
26
|
- Ruby
|
@@ -42,14 +36,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
42
36
|
requirements:
|
43
37
|
- - ">="
|
44
38
|
- !ruby/object:Gem::Version
|
45
|
-
version:
|
39
|
+
version: 3.1.0
|
46
40
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
47
41
|
requirements:
|
48
42
|
- - ">="
|
49
43
|
- !ruby/object:Gem::Version
|
50
44
|
version: '0'
|
51
45
|
requirements: []
|
52
|
-
rubygems_version: 3.
|
46
|
+
rubygems_version: 3.5.11
|
53
47
|
signing_key:
|
54
48
|
specification_version: 4
|
55
49
|
summary: Interface for secure random number generator.
|
data/.github/workflows/test.yml
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
name: build
|
2
|
-
|
3
|
-
on: [push, pull_request]
|
4
|
-
|
5
|
-
jobs:
|
6
|
-
build:
|
7
|
-
name: build (${{ matrix.ruby }} / ${{ matrix.os }})
|
8
|
-
strategy:
|
9
|
-
matrix:
|
10
|
-
ruby: [ 2.7, 2.6, 2.5, head ]
|
11
|
-
os: [ ubuntu-latest, macos-latest ]
|
12
|
-
runs-on: ${{ matrix.os }}
|
13
|
-
steps:
|
14
|
-
- uses: actions/checkout@master
|
15
|
-
- name: Set up Ruby
|
16
|
-
uses: ruby/setup-ruby@v1
|
17
|
-
with:
|
18
|
-
ruby-version: ${{ matrix.ruby }}
|
19
|
-
- name: Install dependencies
|
20
|
-
run: |
|
21
|
-
gem install bundler --no-document
|
22
|
-
bundle install
|
23
|
-
- name: Run test
|
24
|
-
run: rake compile test
|
data/.gitignore
DELETED
data/Gemfile
DELETED
data/Rakefile
DELETED
data/bin/console
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require "bundler/setup"
|
4
|
-
require "securerandom"
|
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
DELETED
data/securerandom.gemspec
DELETED
@@ -1,22 +0,0 @@
|
|
1
|
-
Gem::Specification.new do |spec|
|
2
|
-
spec.name = "securerandom"
|
3
|
-
spec.version = "0.1.0"
|
4
|
-
spec.authors = ["Tanaka Akira"]
|
5
|
-
spec.email = ["akr@fsij.org"]
|
6
|
-
|
7
|
-
spec.summary = %q{Interface for secure random number generator.}
|
8
|
-
spec.description = %q{Interface for secure random number generator.}
|
9
|
-
spec.homepage = "https://github.com/ruby/securerandom"
|
10
|
-
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
11
|
-
spec.licenses = ["Ruby", "BSD-2-Clause"]
|
12
|
-
|
13
|
-
spec.metadata["homepage_uri"] = spec.homepage
|
14
|
-
spec.metadata["source_code_uri"] = spec.homepage
|
15
|
-
|
16
|
-
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
17
|
-
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
18
|
-
end
|
19
|
-
spec.bindir = "exe"
|
20
|
-
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
21
|
-
spec.require_paths = ["lib"]
|
22
|
-
end
|