hubrise_initializer 1.0.0 → 1.0.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/rubocop.yml +21 -0
- data/.github/workflows/spec.yml +21 -0
- data/.rubocop.yml +1009 -0
- data/Gemfile +9 -0
- data/Gemfile.lock +219 -0
- data/README.md +1 -1
- data/hubrise_initializer.gemspec +11 -9
- data/lib/hubrise_initializer/lograge.rb +27 -23
- data/lib/hubrise_initializer/version.rb +2 -1
- data/lib/hubrise_initializer.rb +22 -21
- metadata +21 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d194962f743d2f8b6bff39108061f025f0cae54246db364f073b1deeaac2ba62
|
|
4
|
+
data.tar.gz: f0febb9e3d615f8287c8b053e9f12190b4a07eb4990ede915f84d72851f67fd0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6dba383db0c277229ae8fc7098c0c14fb0beb07f48d5b35f77acc1b6942f571d1150e7501aa3cc2f53dd9f6b6fa8c11924abc13a9745a17c216f2db822225700
|
|
7
|
+
data.tar.gz: 837634d42cdf90e5c4655385cf8611c0868cbb14a14579bcc77ef4ab03d6eb6274c07f6c9c67d2d9eab9aa8b05814e1c9751e7463d8a7c913653cf31e1f2f81d
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
name: rubocop
|
|
2
|
+
|
|
3
|
+
on: push
|
|
4
|
+
|
|
5
|
+
jobs:
|
|
6
|
+
test:
|
|
7
|
+
runs-on: ubuntu-latest
|
|
8
|
+
name: Code style check
|
|
9
|
+
|
|
10
|
+
container:
|
|
11
|
+
image: ruby:2.7.6-bullseye
|
|
12
|
+
|
|
13
|
+
steps:
|
|
14
|
+
- name: Clone repository
|
|
15
|
+
uses: actions/checkout@v2
|
|
16
|
+
|
|
17
|
+
- name: Install rubocop
|
|
18
|
+
run: gem install rubocop -v 0.81.0
|
|
19
|
+
|
|
20
|
+
- name: Rubocop
|
|
21
|
+
run: rubocop
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
name: spec
|
|
2
|
+
|
|
3
|
+
on: push
|
|
4
|
+
|
|
5
|
+
jobs:
|
|
6
|
+
test:
|
|
7
|
+
runs-on: ubuntu-latest
|
|
8
|
+
name: Run all
|
|
9
|
+
|
|
10
|
+
container:
|
|
11
|
+
image: ruby:2.7.6-bullseye
|
|
12
|
+
|
|
13
|
+
steps:
|
|
14
|
+
- name: Clone repository
|
|
15
|
+
uses: actions/checkout@v2
|
|
16
|
+
|
|
17
|
+
- name: Install gems
|
|
18
|
+
run: bundle install --jobs 4 --retry 3
|
|
19
|
+
|
|
20
|
+
- name: Run tests
|
|
21
|
+
run: rspec
|