souls 0.10.5 → 0.10.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 +4 -4
- data/exe/souls +6 -4
- data/lib/souls/version.rb +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: 6509bef1c404da5a8fd24bdca10de869c1b1c04235efde007698457ab8276a2e
|
|
4
|
+
data.tar.gz: dd7d5536a3df51475f1521bc24025052e1840772fd52702fa0e2cb7d77996cf6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f2ac59232c0ba1af44e80ec08a47201a94c1515f32e22c354de23482946c28f538d1e5edf94e5a91e784221eaf4e74cb4ac9b8b35e066c3badf9130e5af41db3
|
|
7
|
+
data.tar.gz: a6297e166a94bb704e263c7c75c3e80d71a453e0415458b1fa074e8f63505aa569f03ef556af336daa6790e398b5eea2f56f38dc95cc408fb29c90e336114397
|
data/exe/souls
CHANGED
|
@@ -20,7 +20,7 @@ begin
|
|
|
20
20
|
when "s", "server"
|
|
21
21
|
strain = Souls.configuration.strain
|
|
22
22
|
case strain
|
|
23
|
-
when "api"
|
|
23
|
+
when "api", "graph"
|
|
24
24
|
system "bundle exec puma -p 3000"
|
|
25
25
|
when "service"
|
|
26
26
|
system "bundle exec rake run_server"
|
|
@@ -30,9 +30,7 @@ begin
|
|
|
30
30
|
when "c", "console"
|
|
31
31
|
strain = Souls.configuration.strain
|
|
32
32
|
case strain
|
|
33
|
-
when "api"
|
|
34
|
-
system "bundle exec irb"
|
|
35
|
-
when "service"
|
|
33
|
+
when "api", "graph", "service"
|
|
36
34
|
system "bundle exec irb"
|
|
37
35
|
else
|
|
38
36
|
system "yarn dev"
|
|
@@ -74,10 +72,14 @@ begin
|
|
|
74
72
|
when "rspec_type"
|
|
75
73
|
Souls::Init.rspec_type class_name: ARGV[2]
|
|
76
74
|
else
|
|
75
|
+
"SOULs!"
|
|
77
76
|
end
|
|
78
77
|
when "t", "test"
|
|
79
78
|
`rubocop`
|
|
80
79
|
`bundle exec rspec`
|
|
80
|
+
when "run"
|
|
81
|
+
`docker build . -t souls:latest`
|
|
82
|
+
`docker run --rm -p 3000:3000 souls:latest`
|
|
81
83
|
when "deploy"
|
|
82
84
|
project_id = Souls.configuration.project_id
|
|
83
85
|
`gcloud builds submit --config=cloudbuild.yml --project #{project_id}`
|
data/lib/souls/version.rb
CHANGED
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.10.
|
|
4
|
+
version: 0.10.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: 2021-01-
|
|
13
|
+
date: 2021-01-24 00:00:00.000000000 Z
|
|
14
14
|
dependencies: []
|
|
15
15
|
description: SOULS is a Web Application Framework for Microservices on Multi Cloud
|
|
16
16
|
Platform such as Google Cloud Platform, Amazon Web Services, and Alibaba Cloud.
|