souls 1.7.24 → 1.7.28
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/README.md +1 -1
- data/lib/souls/cli/create/index.rb +1 -2
- data/lib/souls/cli/generate/job_rbs.rb +3 -1
- data/lib/souls/cli/release/release.rb +1 -1
- data/lib/souls/version.rb +1 -1
- data/lib/souls/versions/.souls_api_version +1 -1
- data/lib/souls/versions/.souls_worker_version +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 433864951f148327fa9bea3360e1b96cf49757dff0113eccd14483fe5831483f
|
4
|
+
data.tar.gz: cfc5b861eac58198199c62d4b625ce5424784d135d89fa83141df6324072f5bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd8c88200dc6611502cf7a01c1c875d29b7647e9fa0df87a3a4cc3d34282fed54a1f3bb9349ec9a35e6ae691b449be4b38e5dd78ac9dbc50b8a3d977dc78e446
|
7
|
+
data.tar.gz: ea9c8e5d9cf37bc0f5de58464d2114ffc4fb5f19c98a27f39d0f9d4c180ed08a98ae259b1118ddd5acfdb949c2d2e6ca0c9bc10f588a8e5d1385fee940b5556e
|
data/README.md
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
<img alt="" src="https://badgen.net/rubygems/dt/souls">
|
17
17
|
</a>
|
18
18
|
<a aria-label="Test" href="https://rubygems.org/gems/souls">
|
19
|
-
<img alt="" src="https://github.com/elsoul/souls/actions/workflows/
|
19
|
+
<img alt="" src="https://github.com/elsoul/souls/actions/workflows/test.yml/badge.svg">
|
20
20
|
</a>
|
21
21
|
<a aria-label="License" href="https://github.com/elsoul/souls/blob/master/LICENSE.txt">
|
22
22
|
<img alt="" src="https://badgen.net/badge/license/Apache/blue">
|
@@ -142,10 +142,9 @@ end
|
|
142
142
|
steps:
|
143
143
|
- uses: actions/checkout@v2
|
144
144
|
- name: Set up Ruby 3.0
|
145
|
-
uses:
|
145
|
+
uses: ruby/setup-ruby@v1
|
146
146
|
with:
|
147
147
|
ruby-version: 3.0
|
148
|
-
bundler-cache: true
|
149
148
|
- name: Build and test with Rake
|
150
149
|
env:
|
151
150
|
PGHOST: 127.0.0.1
|
@@ -9,7 +9,9 @@ module Souls
|
|
9
9
|
file_dir = "./sig/#{worker_name}/app/graphql/queries/"
|
10
10
|
FileUtils.mkdir_p(file_dir) unless Dir.exist?(file_dir)
|
11
11
|
file_path = "#{file_dir}#{singularized_class_name}.rbs"
|
12
|
-
|
12
|
+
sig_type_path = "./sig/#{worker_name}/app/graphql/types"
|
13
|
+
FileUtils.mkdir_p(sig_type_path) unless Dir.exist?(sig_type_path)
|
14
|
+
type_file_path = "#{sig_type_path}/#{singularized_class_name}_type.rbs"
|
13
15
|
File.open(file_path, "w") do |f|
|
14
16
|
f.write(<<~TEXT)
|
15
17
|
module Queries
|
@@ -37,7 +37,7 @@ module Souls
|
|
37
37
|
system("rake release")
|
38
38
|
write_changelog(current_souls_ver: current_souls_ver)
|
39
39
|
system("gh release create v#{souls_new_ver} -t v#{souls_new_ver} -F ./CHANGELOG.md")
|
40
|
-
system("gsutil -m -q cp -r coverage gs://souls-bucket/souls-coverage")
|
40
|
+
system("gsutil -m -q -o 'GSUtil:parallel_process_count=1' cp -r coverage gs://souls-bucket/souls-coverage")
|
41
41
|
system("bundle exec rake upload:init_files")
|
42
42
|
Whirly.status = Paint["soul-v#{souls_new_ver} successfully updated!"]
|
43
43
|
end
|
data/lib/souls/version.rb
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.7.
|
1
|
+
1.7.28
|
@@ -1 +1 @@
|
|
1
|
-
1.7.
|
1
|
+
1.7.28
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: souls
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.7.
|
4
|
+
version: 1.7.28
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- POPPIN-FUMI
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
|
-
date: 2021-11-
|
13
|
+
date: 2021-11-17 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: activesupport
|