souls 1.21.4 → 1.21.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b7b2f32c521176dadc7f3a709c93860b002e619abb7fc6453c8c5a91c0a93fa3
4
- data.tar.gz: 87db4e9357f1eff27234ee063e886bfc8ffc1814d155a3bceb820192561403d9
3
+ metadata.gz: da74fd1f249bf93d37466e7871c56fd5f13a287bfa37a84f74b01130f9e354a9
4
+ data.tar.gz: 1b12042fb2aff0c9db27d243c0394c41627a0142c9c9b47f263674429966f6f3
5
5
  SHA512:
6
- metadata.gz: 51e12c13ee2e81d8b0537318be10fd7feb72f001a94e01bdb32535f6b882dff4e3a65e2252fb61a567fa56a1f9cb1238de35fca8d0a15d492f7e35aca60e5a67
7
- data.tar.gz: 9877d64d9578cb267fd61048762b037fc42a9a6e2100d46fa4dcda2e87644659cd9aff9b8378ea857252a9b111ea95aff36a35f4b32946011bb663f5f0b3b1b5
6
+ metadata.gz: 95c4ed5426ae611ae9c09f710dc86051b78b30db59468a94ef7b4874906551f8c085eda316942f6f3b666f10429da092e5275817276abb8e32923469ab1f0303
7
+ data.tar.gz: 917901a03e337ac0e74ba5f6c8b06f0539da11a257cc05c134d8cc2fce6d39bfdf0cbbcc90c71664158c236e4854a133663a5e037fd17f5fd469e5022999bfeb
@@ -141,28 +141,31 @@ end
141
141
  - name: Set up Ruby 3.1
142
142
  uses: ruby/setup-ruby@v1
143
143
  with:
144
+ bundler-cache: true
144
145
  ruby-version: 3.1
145
146
 
146
147
  - name: Checkout the repository
147
148
  uses: actions/checkout@v2
148
149
 
149
- - name: GCP Authenticate
150
- uses: google-github-actions/setup-gcloud@master
150
+ - id: auth
151
+ uses: google-github-actions/auth@v0
151
152
  with:
152
- version: "323.0.0"
153
- project_id: ${{ secrets.SOULS_GCP_PROJECT_ID }}
154
- service_account_key: ${{ secrets.SOULS_GCP_SA_KEY }}
155
- export_default_credentials: true
153
+ credentials_json: ${{ secrets.SOULS_GCP_SA_KEY }}
154
+
155
+ - name: Set up Cloud SDK
156
+ uses: google-github-actions/setup-gcloud@v0
156
157
 
157
158
  - name: Build and test with Rake
158
159
  env:
159
160
  PGHOST: 127.0.0.1
160
161
  PGUSER: postgres
161
162
  RACK_ENV: test
163
+ RUBY_YJIT_ENABLE: 1
162
164
  SOULS_GCP_PROJECT_ID: ${{ secrets.SOULS_GCP_PROJECT_ID }}
163
165
  run: |
164
166
  sudo apt-get -yqq install libpq-dev
165
167
  cd apps/#{worker_name}
168
+ rm .env
166
169
  gem install bundler
167
170
  bundle install --jobs 4 --retry 3
168
171
  bundle exec rake db:create RACK_ENV=test
@@ -202,7 +205,8 @@ end
202
205
  --set-env-vars="SOULS_DB_HOST=${{ secrets.SOULS_DB_HOST }}" \\
203
206
  --set-env-vars="TZ=${{ secrets.TZ }}" \\
204
207
  --set-env-vars="SOULS_SECRET_KEY_BASE=${{ secrets.SOULS_SECRET_KEY_BASE }}" \\
205
- --set-env-vars="SOULS_GCP_PROJECT_ID=${{ secrets.SOULS_GCP_PROJECT_ID }}"
208
+ --set-env-vars="SOULS_GCP_PROJECT_ID=${{ secrets.SOULS_GCP_PROJECT_ID }}" \\
209
+ --set-env-vars="RUBY_YJIT_ENABLE=1"
206
210
  TEXT
207
211
  end
208
212
  SOULs::Painter.create_file(file_path.to_s)
data/lib/souls/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module SOULs
2
- VERSION = "1.21.4".freeze
2
+ VERSION = "1.21.5".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 1.21.4
1
+ 1.21.5
@@ -1 +1 @@
1
- 1.21.4
1
+ 1.21.5
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.21.4
4
+ version: 1.21.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - POPPIN-FUMI