souls 1.21.2 → 1.21.6

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: 77f6c298b83939fe6e368675c9cc350e3ce360e6355503781fcf4770041fc22a
4
- data.tar.gz: 274664939838273cb6c574821ae4678b1b3c59e2c2377aeb4d6928a4ca588127
3
+ metadata.gz: 972a8bdeb1d9b160c82b227b6146426ee424e68f1262f270eb9f5179f2ae6369
4
+ data.tar.gz: 724896462fd307b485b0c0eec27569f19666689d8b467a815371f75bb3fe999c
5
5
  SHA512:
6
- metadata.gz: cbb0e61108ff8269d7f2e25ec1fc7eb0a0415371e01031850d02109bc8b1c56c81116009d23016428175507209358b595c4c1aa8ccb892997ae0fcf2829ffd96
7
- data.tar.gz: debef8cc039a8a98c1133bbd0b312dfe83455f205e66298d74c017d1155b6fb54b2b4b617b941b45dd052a1d6be9153f4f8aecc4377d9f142beac8caf68e7ad7
6
+ metadata.gz: ff673d80d7d5102dd9021eb147615b5aa868f66b2b48dc740402d22613d1a3cfd53d2ec5935d7c6c97c729a53353e79687dbeb5b201c738b5343ca7e4cf9f407
7
+ data.tar.gz: b45cef0111b882026c9cb915f0df726306447c6036f8d92acd98cad95652c0939cf974043d439e50970ce687e1bb476a63e56752d170211c4fad141ab663a553
@@ -1,3 +1,4 @@
1
1
  FirebaseIdToken.configure do |config|
2
2
  config.project_ids = [ENV["SOULS_GCP_PROJECT_ID"]]
3
+ config.redis = Redis.new
3
4
  end
@@ -21,6 +21,7 @@ module SOULs
21
21
  steepfile(worker_name:)
22
22
  souls_helper_rbs(worker_name:)
23
23
  system("cd #{file_dir} && bundle")
24
+ system("cd #{file_dir} && mv .env.sample .env")
24
25
  souls_worker_credit(worker_name:)
25
26
  end
26
27
  true
@@ -140,28 +141,31 @@ end
140
141
  - name: Set up Ruby 3.1
141
142
  uses: ruby/setup-ruby@v1
142
143
  with:
144
+ bundler-cache: true
143
145
  ruby-version: 3.1
144
146
 
145
147
  - name: Checkout the repository
146
148
  uses: actions/checkout@v2
147
149
 
148
- - name: GCP Authenticate
149
- uses: google-github-actions/setup-gcloud@master
150
+ - id: auth
151
+ uses: google-github-actions/auth@v0
150
152
  with:
151
- version: "323.0.0"
152
- project_id: ${{ secrets.SOULS_GCP_PROJECT_ID }}
153
- service_account_key: ${{ secrets.SOULS_GCP_SA_KEY }}
154
- 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
155
157
 
156
158
  - name: Build and test with Rake
157
159
  env:
158
160
  PGHOST: 127.0.0.1
159
161
  PGUSER: postgres
160
162
  RACK_ENV: test
163
+ RUBY_YJIT_ENABLE: 1
161
164
  SOULS_GCP_PROJECT_ID: ${{ secrets.SOULS_GCP_PROJECT_ID }}
162
165
  run: |
163
166
  sudo apt-get -yqq install libpq-dev
164
167
  cd apps/#{worker_name}
168
+ rm -f .env
165
169
  gem install bundler
166
170
  bundle install --jobs 4 --retry 3
167
171
  bundle exec rake db:create RACK_ENV=test
@@ -201,7 +205,8 @@ end
201
205
  --set-env-vars="SOULS_DB_HOST=${{ secrets.SOULS_DB_HOST }}" \\
202
206
  --set-env-vars="TZ=${{ secrets.TZ }}" \\
203
207
  --set-env-vars="SOULS_SECRET_KEY_BASE=${{ secrets.SOULS_SECRET_KEY_BASE }}" \\
204
- --set-env-vars="SOULS_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"
205
210
  TEXT
206
211
  end
207
212
  SOULs::Painter.create_file(file_path.to_s)
@@ -62,6 +62,7 @@ module SOULs
62
62
  file_path = ".env"
63
63
  File.open(file_path, "w") do |line|
64
64
  line.write(<<~TEXT)
65
+ RUBY_YJIT_ENABLE=1
65
66
  GOOGLE_AUTH_SUPPRESS_CREDENTIALS_WARNINGS=1
66
67
  SOULS_DB_HOST=#{instance_ip}
67
68
  SOULS_DB_PW=#{db_password}
@@ -77,6 +78,7 @@ module SOULs
77
78
  file_path = ".env.production"
78
79
  File.open(file_path, "w") do |line|
79
80
  line.write(<<~TEXT)
81
+ RUBY_YJIT_ENABLE=1
80
82
  SOULS_DB_HOST="/cloudsql/#{project_id}:#{region}:#{instance_name}"
81
83
  SOULS_DB_PW=#{db_password}
82
84
  SOULS_DB_USER=postgres
@@ -13,13 +13,17 @@ module SOULs
13
13
  exit
14
14
  end
15
15
  file_dir = "./#{app_name}"
16
- raise(StandardError, "Directory already exists and is not empty") if Dir.exist?(file_dir) && !Dir.empty?(file_dir)
16
+ if Dir.exist?(file_dir) && !Dir.empty?(file_dir)
17
+ SOULs::Painter.error("Directory already exists and is not empty")
18
+ return
19
+ end
17
20
 
18
21
  service_name = "api"
19
22
  download_souls(app_name:, service_name:)
20
23
  mother_config_init(app_name:)
21
24
  download_github_actions(app_name:)
22
25
  initial_config_init(app_name:, service_name:)
26
+ system("cd #{app_name}/apps/api && mv .env.sample .env")
23
27
  system("cd #{app_name} && git init --initial-branch=main")
24
28
 
25
29
  system(" cd #{app_name} && rbs collection init && rbs collection install ")
data/lib/souls/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module SOULs
2
- VERSION = "1.21.2".freeze
2
+ VERSION = "1.21.6".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 1.21.2
1
+ 1.21.6
@@ -1 +1 @@
1
- 1.21.2
1
+ 1.21.6
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.2
4
+ version: 1.21.6
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: 2022-01-17 00:00:00.000000000 Z
13
+ date: 2022-01-18 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activesupport