Skip to content

Commit

Permalink
souls update v4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
POPPIN-FUMI committed Sep 12, 2022
1 parent c802c0a commit e5df5af
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 37 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
souls (3.0.8)
souls (4.0.0)
activesupport (>= 7.0.2.3)
firebase_id_token (>= 2.4.0)
foreman (>= 0.87.2)
Expand Down
2 changes: 1 addition & 1 deletion apps/api/.souls_api_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.8
4.0.0
2 changes: 1 addition & 1 deletion apps/api/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ gem "sinatra", "2.1.0"
gem "sinatra-activerecord", "2.0.25", require: "sinatra/activerecord"
gem "sinatra-contrib", "2.1.0", require: false
gem "slack-ruby3", "0.1.2"
gem "souls", "3.0.8"
gem "souls", "4.0.0"
gem "zeitwerk", "2.5.4"

group :development, :test do
Expand Down
2 changes: 1 addition & 1 deletion apps/worker/.souls_worker_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.8
4.0.0
2 changes: 1 addition & 1 deletion apps/worker/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ gem "rake", "13.0.6"
gem "selenium-webdriver", "4.1.0"
gem "sinatra", "2.1.0"
gem "sinatra-contrib", "2.1.0", require: false
gem "souls", "3.0.8"
gem "souls", "4.0.0"
gem "typhoeus", "1.4.0"
gem "zeitwerk", "2.5.4"

Expand Down
2 changes: 1 addition & 1 deletion lib/souls/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module SOULs
VERSION = "3.0.8".freeze
VERSION = "4.0.0".freeze
public_constant :VERSION
end
2 changes: 1 addition & 1 deletion lib/souls/versions/.souls_api_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.8
4.0.0
2 changes: 1 addition & 1 deletion lib/souls/versions/.souls_worker_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.8
4.0.0
29 changes: 0 additions & 29 deletions spec/cli/create/scaffolds/scaffold_workflow.rb
Original file line number Diff line number Diff line change
Expand Up @@ -47,29 +47,6 @@ def self.scaffold_workflow
- name: Set up Cloud SDK
uses: google-github-actions/setup-gcloud@v0
- name: Build and test with Rake
env:
PGHOST: 127.0.0.1
PGUSER: postgres
RACK_ENV: test
RUBY_YJIT_ENABLE: 1
SOULS_GCP_PROJECT_ID: ${{ secrets.SOULS_GCP_PROJECT_ID }}
run: |
sudo apt-get -yqq install libpq-dev
cd apps/worker-mailer
rm -f .env
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rake db:create RACK_ENV=test
bundle exec rake db:migrate RACK_ENV=test
bundle exec rspec
- name: Sync PubSub
run: cd apps/worker-mailer && souls sync pubsub
- name: Sync Tasks
run: cd apps/worker-mailer && souls gcloud scheduler sync_schedules --timezone=${{ secrets.TZ }}
- name: Configure Docker
run: gcloud auth configure-docker --quiet
Expand All @@ -91,12 +68,6 @@ def self.scaffold_workflow
--quiet \\
--concurrency=80 \\
--port=8080 \\
--set-cloudsql-instances=${{ secrets.SOULS_GCLOUDSQL_INSTANCE }} \\
--set-env-vars="SOULS_DB_USER=${{ secrets.SOULS_DB_USER }}" \\
--set-env-vars="SOULS_DB_PW=${{ secrets.SOULS_DB_PW }}" \\
--set-env-vars="SOULS_DB_HOST=${{ secrets.SOULS_DB_HOST }}" \\
--set-env-vars="TZ=${{ secrets.TZ }}" \\
--set-env-vars="SOULS_SECRET_KEY_BASE=${{ secrets.SOULS_SECRET_KEY_BASE }}" \\
--set-env-vars="SOULS_GCP_PROJECT_ID=${{ secrets.SOULS_GCP_PROJECT_ID }}" \\
--set-env-vars="RUBY_YJIT_ENABLE=1"
WORKFLOW
Expand Down

0 comments on commit e5df5af

Please sign in to comment.