souls 0.56.3 → 0.58.0
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 +4 -4
- data/lib/souls/api/generate/policy_rbs.rb +1 -1
- data/lib/souls/api/generate/resolver_rbs.rb +0 -1
- data/lib/souls/cli/init/index.rb +8 -3
- data/lib/souls/version.rb +1 -1
- data/lib/souls/versions/.souls_api_version +1 -1
- data/lib/souls/versions/.souls_worker_version +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f2a1d317b54c67b7d670a05abbd8b2913283535863e47160b74c8ee610e9082
|
4
|
+
data.tar.gz: f0581ec49635b806eb89df23db2ceccf5ac7647853104cb54bda972db0d36d7d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e366b587920d65dd2fc28f72636f4e2427643b7c37eda4f340c28f447cdd2b1dff2f5b823c001fa676e5ec8ae255f3444e3e3682d4cf9a1b7f49dc4cdc068e4
|
7
|
+
data.tar.gz: 07c3ab05df5708a8bb5d88b993db4818277bc89723b17cbe44ccdca22ce3bb76ed24fa4d21275dd75980bb588427565017a4fe4eef07406152c6ae12978bb47b
|
@@ -4,7 +4,7 @@ module Souls
|
|
4
4
|
def policy_rbs(class_name)
|
5
5
|
file_path = ""
|
6
6
|
Dir.chdir(Souls.get_mother_path.to_s) do
|
7
|
-
file_dir = "./sig/api/app/graphql/
|
7
|
+
file_dir = "./sig/api/app/graphql/policies/"
|
8
8
|
FileUtils.mkdir_p(file_dir) unless Dir.exist?(file_dir)
|
9
9
|
singularized_class_name = class_name.underscore.singularize
|
10
10
|
file_path = "#{file_dir}#{singularized_class_name}_policy.rbs"
|
data/lib/souls/cli/init/index.rb
CHANGED
@@ -13,6 +13,7 @@ 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
17
|
souls_api_credit(app_name: app_name, service_name: service_name)
|
17
18
|
end
|
18
19
|
|
@@ -132,6 +133,10 @@ module Souls
|
|
132
133
|
system("cd #{app_name} && curl -OL https://storage.googleapis.com/souls-bucket/boilerplates/Procfile.dev")
|
133
134
|
system("cd #{app_name} && curl -OL https://storage.googleapis.com/souls-bucket/boilerplates/Procfile")
|
134
135
|
system("cd #{app_name} && curl -OL https://storage.googleapis.com/souls-bucket/boilerplates/Steepfile")
|
136
|
+
system("cd #{app_name} && git init")
|
137
|
+
system("cd #{app_name} && curl -OL https://storage.googleapis.com/souls-bucket/boilerplates/gitignore")
|
138
|
+
system("cd #{app_name} && mv gitignore .gitignore")
|
139
|
+
system("cd #{app_name} && bundle")
|
135
140
|
FileUtils.rm(sig_name)
|
136
141
|
end
|
137
142
|
|
@@ -160,9 +165,9 @@ module Souls
|
|
160
165
|
puts(line)
|
161
166
|
endroll = <<~TEXT
|
162
167
|
Easy to Run
|
163
|
-
$ cd #{app_name}
|
164
|
-
$
|
165
|
-
$ souls s
|
168
|
+
$ cd #{app_name}
|
169
|
+
$ souls check
|
170
|
+
$ cd apps/api && souls s
|
166
171
|
Go To : http://localhost:4000
|
167
172
|
|
168
173
|
Doc: https://souls.elsoul.nl
|
data/lib/souls/version.rb
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.37.0
|
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.37.0
|
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.
|
4
|
+
version: 0.58.0
|
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-09-
|
13
|
+
date: 2021-09-25 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: activesupport
|