souls 1.7.24 → 1.7.28

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c731aa9244ceb825af39c837fe0be223a8b6d1df9a64cbb16a3767d0650c8147
4
- data.tar.gz: 30814435a8d524bc1021bfa2a31dcb88f9f9f4fc373b8d17c219d9ca9b0744a9
3
+ metadata.gz: 433864951f148327fa9bea3360e1b96cf49757dff0113eccd14483fe5831483f
4
+ data.tar.gz: cfc5b861eac58198199c62d4b625ce5424784d135d89fa83141df6324072f5bd
5
5
  SHA512:
6
- metadata.gz: 153d93623299b56bbf5e51d343165e7e99025ab5f04cff92674080c3a05140db83d3fc09b428d01d7c4bffc26e96d79a4b7e0260f0828eb3496e8d8432b26169
7
- data.tar.gz: f0c04fb0f44d02aff9979f26869aed96be3e059610c4485e392c8e10b95c4f884c0a7341f2b2d163c2d1e726410fb6e6bd9aa6c6a794c0dbf44f80f452c6c0bf
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/gem-test.yml/badge.svg">
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: actions/setup-ruby@v1
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
- type_file_path = "./sig/#{worker_name}/app/graphql/types/#{singularized_class_name}_type.rbs"
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,4 +1,4 @@
1
1
  module Souls
2
- VERSION = "1.7.24".freeze
2
+ VERSION = "1.7.28".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 1.7.24
1
+ 1.7.28
@@ -1 +1 @@
1
- 1.7.24
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.24
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-16 00:00:00.000000000 Z
13
+ date: 2021-11-17 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activesupport