securerandom 0.1.0 → 0.1.1
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/.github/workflows/test.yml +3 -5
- data/lib/securerandom.rb +1 -1
- data/securerandom.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7c86f5641616ad68142ce8d77c366c677f495279fffc3e73f3755c40e4afb4b1
|
|
4
|
+
data.tar.gz: 8799229ff9e615d0a231c55fe44942412ea6a78280a3b2901f80b96d31d9aee6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6be30a699631025d67240f44ea769b61a3b85b2d776113a4da72fb7e3dd0a73f0c7ec1cbbe952bfdcdacbf0492c57639e64fdf595d896831b628dee4c890d0b5
|
|
7
|
+
data.tar.gz: cc815744e7d944bfe3b1764cfba6ad1cbe52a8e4bae0ef09803609042ea972b7d22c0eaac6918c9ab52c38293df0030f3a1e8d4d143e10855809415a25964fd8
|
data/.github/workflows/test.yml
CHANGED
|
@@ -11,14 +11,12 @@ jobs:
|
|
|
11
11
|
os: [ ubuntu-latest, macos-latest ]
|
|
12
12
|
runs-on: ${{ matrix.os }}
|
|
13
13
|
steps:
|
|
14
|
-
- uses: actions/checkout@
|
|
14
|
+
- uses: actions/checkout@v2
|
|
15
15
|
- name: Set up Ruby
|
|
16
16
|
uses: ruby/setup-ruby@v1
|
|
17
17
|
with:
|
|
18
18
|
ruby-version: ${{ matrix.ruby }}
|
|
19
19
|
- name: Install dependencies
|
|
20
|
-
run:
|
|
21
|
-
gem install bundler --no-document
|
|
22
|
-
bundle install
|
|
20
|
+
run: bundle install
|
|
23
21
|
- name: Run test
|
|
24
|
-
run: rake
|
|
22
|
+
run: rake test
|
data/lib/securerandom.rb
CHANGED
data/securerandom.gemspec
CHANGED
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.1.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: 2021-10-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: Interface for secure random number generator.
|
|
14
14
|
email:
|
|
@@ -49,7 +49,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
49
49
|
- !ruby/object:Gem::Version
|
|
50
50
|
version: '0'
|
|
51
51
|
requirements: []
|
|
52
|
-
rubygems_version: 3.
|
|
52
|
+
rubygems_version: 3.3.0.dev
|
|
53
53
|
signing_key:
|
|
54
54
|
specification_version: 4
|
|
55
55
|
summary: Interface for secure random number generator.
|