souls 0.61.2 → 0.61.6

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: a395c41a097cf8773d3e19188976b3948e09a9736b157ce351a692ac1c9e5096
4
- data.tar.gz: 20617090b1454ca2c6974aee63e4837a6ba31a71111304d745b72d08594e9d4a
3
+ metadata.gz: 226cae32a7353d8e7ba62fb095611c77efa15a0647db06edcff8adb85dc0fd5b
4
+ data.tar.gz: 5f05c2abdea45e33784eaacdf58765f52462b9da1845fcf8048949d03caacbd2
5
5
  SHA512:
6
- metadata.gz: 6698f7dca334ddae16066fbd55675478fc5c215598ba5c39185e618ffc02929141043f0f1c3b106798426d13deef1f4324736402b3cac0d48e9c3a2522ec18ca
7
- data.tar.gz: fc3411de2e75eed68d82897af363e399aeaaf9416e5187e9ff69ba8e754956152410574c2bef3f53e5066112e41d03f9a52c089dee1a18e836859f0ff0e033f6
6
+ metadata.gz: 22e934959a7163519539d23763eeabf61b125923b1133bebf4161507aceba464632e74d69b23cb325e529afbeb4591017932d745520aff98d7eafd5cac23e3c0
7
+ data.tar.gz: 76202d6e7856c1efc32c1305354fc2bd86bf51132bf1d76c595f15b7ae78094a42b0acb0a056e278912a17d20dbcff7538180cb980e428afcbe81884d583db02
@@ -121,7 +121,7 @@ end
121
121
  on:
122
122
  push:
123
123
  branches:
124
- - master
124
+ - main
125
125
  paths:
126
126
  - "apps/#{worker_name}/**"
127
127
  - ".github/workflows/#{worker_name}.yml"
@@ -1,3 +1,4 @@
1
+ require_relative "./create_migration_rbs"
1
2
  module Souls
2
3
  class DB < Thor
3
4
  desc "migrate", "Migrate Database"
@@ -75,7 +76,7 @@ module Souls
75
76
  end
76
77
  TEXT
77
78
  end
78
- Souls::DB.new.invoke(:create_migration, [pluralized_class_name], {})
79
+ Souls::DB.new.invoke(:create_migration_rbs, [pluralized_class_name], {})
79
80
  rescue Thor::Error => e
80
81
  raise(Thor::Error, e)
81
82
  end
@@ -13,7 +13,11 @@ module Souls
13
13
  mother_config_init(app_name: app_name)
14
14
  download_github_actions(app_name: app_name)
15
15
  initial_config_init(app_name: app_name, service_name: service_name)
16
- system("cd #{app_name} && souls add_submodule")
16
+ system(
17
+ "
18
+ cd #{app_name} && git submodule add https://github.com/ruby/gem_rbs_collection.git vendor/rbs/gem_rbs_collection
19
+ "
20
+ )
17
21
  system("cd #{app_name} && git init --initial-branch=main")
18
22
  souls_api_credit(app_name: app_name, service_name: service_name)
19
23
  end
data/lib/souls/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Souls
2
- VERSION = "0.61.2".freeze
2
+ VERSION = "0.61.6".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 0.40.2
1
+ 0.40.6
@@ -1 +1 @@
1
- 0.40.2
1
+ 0.40.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: 0.61.2
4
+ version: 0.61.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - POPPIN-FUMI