rex-core 0.1.21 → 0.1.22
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
- checksums.yaml.gz.sig +0 -0
- data/.github/verify.yml +45 -0
- data/lib/rex/core/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +3 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aee7a2b7c73c330e271e8edf2291e13ec4c19d7be98ba3005cda912319c8fc10
|
|
4
|
+
data.tar.gz: 1d03dbf51ec8659fb0b157bab7d2a6c01fbaf9711ec7b47c32a1f8c52c8368f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2f008f51e3f18eec38b3577c774ad90eef3c40618c078b4000f26c25bec52ca8597218a48c30cca7a66b1523813647bbe1a5c22f5b2f4abb73fbe1223ec5120e
|
|
7
|
+
data.tar.gz: d2b1eb1f1d62a22829a7379fab9a8409ffa72a19b91180a6998ce9f3b9cc7239e5c19892c179bef9e055a65eddaa486d4e52703c552bf51f0e0e933049f19d50
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data/.github/verify.yml
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
name: Verify
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- '*'
|
|
7
|
+
pull_request:
|
|
8
|
+
branches:
|
|
9
|
+
- '*'
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
test:
|
|
13
|
+
runs-on: ubuntu-18.04
|
|
14
|
+
timeout-minutes: 40
|
|
15
|
+
|
|
16
|
+
strategy:
|
|
17
|
+
fail-fast: true
|
|
18
|
+
matrix:
|
|
19
|
+
ruby:
|
|
20
|
+
- 2.6
|
|
21
|
+
- 2.7
|
|
22
|
+
- 3.0
|
|
23
|
+
test_cmd:
|
|
24
|
+
- bundle exec rspec
|
|
25
|
+
|
|
26
|
+
env:
|
|
27
|
+
RAILS_ENV: test
|
|
28
|
+
|
|
29
|
+
name: Ruby ${{ matrix.ruby }} - ${{ matrix.test_cmd }}
|
|
30
|
+
steps:
|
|
31
|
+
- name: Checkout code
|
|
32
|
+
uses: actions/checkout@v2
|
|
33
|
+
|
|
34
|
+
- name: Setup Ruby
|
|
35
|
+
uses: ruby/setup-ruby@v1
|
|
36
|
+
with:
|
|
37
|
+
ruby-version: ${{ matrix.ruby }}
|
|
38
|
+
bundler-cache: true
|
|
39
|
+
|
|
40
|
+
- name: ${{ matrix.test_cmd }}
|
|
41
|
+
run: |
|
|
42
|
+
echo "${CMD}"
|
|
43
|
+
bash -c "${CMD}"
|
|
44
|
+
env:
|
|
45
|
+
CMD: ${{ matrix.test_cmd }}
|
data/lib/rex/core/version.rb
CHANGED
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rex-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.22
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Metasploit Hackers
|
|
@@ -93,7 +93,7 @@ cert_chain:
|
|
|
93
93
|
EknWpNgVhohbot1lfVAMmIhdtOVaRVcQQixWPwprDj/ydB8ryDMDosIMcw+fkoXU
|
|
94
94
|
9GJsSaSRRYQ9UUkVL27b64okU8D48m8=
|
|
95
95
|
-----END CERTIFICATE-----
|
|
96
|
-
date: 2022-01-
|
|
96
|
+
date: 2022-01-26 00:00:00.000000000 Z
|
|
97
97
|
dependencies:
|
|
98
98
|
- !ruby/object:Gem::Dependency
|
|
99
99
|
name: rake
|
|
@@ -132,6 +132,7 @@ executables: []
|
|
|
132
132
|
extensions: []
|
|
133
133
|
extra_rdoc_files: []
|
|
134
134
|
files:
|
|
135
|
+
- ".github/verify.yml"
|
|
135
136
|
- ".gitignore"
|
|
136
137
|
- ".rspec"
|
|
137
138
|
- ".travis.yml"
|
metadata.gz.sig
CHANGED
|
Binary file
|