souls 0.7.3 → 0.7.5
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/.irbrc +1 -2
- data/.ruby-version +1 -1
- data/Gemfile +1 -0
- data/Gemfile.lock +41 -2
- data/Steepfile +9 -0
- data/exe/souls +9 -2
- data/lib/souls/version.rb +1 -1
- data/rbs/init.rbs +2 -0
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz: '
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '0823980d65837aead6add63c442e3c750572c64289f926e5f1b0ed361ce634ab'
|
|
4
|
+
data.tar.gz: be2292aa74d90857fffe33cc5b24af875311db2c25a94c16955c16515f57736d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9a8fd3de8cd42aa0997d5f8691fcc028ecae4443443f712e40eb61a1fa412f04468e636acbaceeab19c84b3db7ef953a4b345c201a1e2b151cb82f438fe916d2
|
|
7
|
+
data.tar.gz: a1c928ce66ef6dc9e240f5e96f5693fc9dc19a7c1193b763b94ebd1d4ff7ffafdaabf45d414a9b22236ce3990b6eaad4139d7fdc95d683dd8b6fe19a741a1201
|
data/.irbrc
CHANGED
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
3.0.0
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,13 +1,39 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
souls (0.7.
|
|
4
|
+
souls (0.7.4)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
8
8
|
specs:
|
|
9
|
+
activesupport (6.1.0)
|
|
10
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
11
|
+
i18n (>= 1.6, < 2)
|
|
12
|
+
minitest (>= 5.1)
|
|
13
|
+
tzinfo (~> 2.0)
|
|
14
|
+
zeitwerk (~> 2.3)
|
|
15
|
+
ast (2.4.1)
|
|
16
|
+
ast_utils (0.3.0)
|
|
17
|
+
parser (~> 2.4)
|
|
18
|
+
thor (>= 0.19)
|
|
19
|
+
concurrent-ruby (1.1.7)
|
|
9
20
|
diff-lcs (1.4.4)
|
|
21
|
+
ffi (1.14.2)
|
|
22
|
+
i18n (1.8.7)
|
|
23
|
+
concurrent-ruby (~> 1.0)
|
|
24
|
+
language_server-protocol (3.15.0.1)
|
|
25
|
+
listen (3.4.0)
|
|
26
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
|
27
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
|
28
|
+
minitest (5.14.2)
|
|
29
|
+
parser (2.7.2.0)
|
|
30
|
+
ast (~> 2.4.1)
|
|
31
|
+
rainbow (3.0.0)
|
|
10
32
|
rake (13.0.3)
|
|
33
|
+
rb-fsevent (0.10.4)
|
|
34
|
+
rb-inotify (0.10.1)
|
|
35
|
+
ffi (~> 1.0)
|
|
36
|
+
rbs (1.0.0)
|
|
11
37
|
rspec (3.1.0)
|
|
12
38
|
rspec-core (~> 3.1.0)
|
|
13
39
|
rspec-expectations (~> 3.1.0)
|
|
@@ -20,6 +46,18 @@ GEM
|
|
|
20
46
|
rspec-mocks (3.1.3)
|
|
21
47
|
rspec-support (~> 3.1.0)
|
|
22
48
|
rspec-support (3.1.2)
|
|
49
|
+
steep (0.39.0)
|
|
50
|
+
activesupport (>= 5.1)
|
|
51
|
+
ast_utils (~> 0.3.0)
|
|
52
|
+
language_server-protocol (~> 3.15.0.1)
|
|
53
|
+
listen (~> 3.0)
|
|
54
|
+
parser (~> 2.7.0)
|
|
55
|
+
rainbow (>= 2.2.2, < 4.0)
|
|
56
|
+
rbs (~> 1.0.0)
|
|
57
|
+
thor (1.0.1)
|
|
58
|
+
tzinfo (2.0.4)
|
|
59
|
+
concurrent-ruby (~> 1.0)
|
|
60
|
+
zeitwerk (2.4.2)
|
|
23
61
|
|
|
24
62
|
PLATFORMS
|
|
25
63
|
ruby
|
|
@@ -28,6 +66,7 @@ DEPENDENCIES
|
|
|
28
66
|
rake (= 13.0.3)
|
|
29
67
|
rspec (= 3.1.0)
|
|
30
68
|
souls!
|
|
69
|
+
steep (= 0.39.0)
|
|
31
70
|
|
|
32
71
|
BUNDLED WITH
|
|
33
|
-
2.
|
|
72
|
+
2.2.4
|
data/Steepfile
ADDED
data/exe/souls
CHANGED
|
@@ -41,8 +41,15 @@ begin
|
|
|
41
41
|
Souls::Init.config
|
|
42
42
|
when "-v", "--version"
|
|
43
43
|
puts Souls::VERSION
|
|
44
|
-
when "
|
|
45
|
-
|
|
44
|
+
when "g", "generate"
|
|
45
|
+
`touch .rubocop.yml`
|
|
46
|
+
`touch .env`
|
|
47
|
+
`touch .gitignore`
|
|
48
|
+
`touch .irbrc`
|
|
49
|
+
when "t", "test"
|
|
50
|
+
`bundle exec rspec`
|
|
51
|
+
when "deploy"
|
|
52
|
+
`gcloud builds submit --config=cloudbuild.yml --project $PROJECT_ID`
|
|
46
53
|
else
|
|
47
54
|
puts "Welcome to Souls!Yeah!"
|
|
48
55
|
end
|
data/lib/souls/version.rb
CHANGED
data/rbs/init.rbs
ADDED
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.7.
|
|
4
|
+
version: 0.7.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- POPPIN-FUMI
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2021-01-
|
|
12
|
+
date: 2021-01-04 00:00:00.000000000 Z
|
|
13
13
|
dependencies: []
|
|
14
14
|
description: SOULS is a Web Application Framework for Microservices on Multi Cloud
|
|
15
15
|
Platform such as Google Cloud Platform, Amazon Web Services, and Alibaba Cloud.
|
|
@@ -35,6 +35,7 @@ files:
|
|
|
35
35
|
- LICENSE.txt
|
|
36
36
|
- README.md
|
|
37
37
|
- Rakefile
|
|
38
|
+
- Steepfile
|
|
38
39
|
- bin/console
|
|
39
40
|
- bin/setup
|
|
40
41
|
- config/initializers/souls.rb
|
|
@@ -42,6 +43,7 @@ files:
|
|
|
42
43
|
- lib/souls.rb
|
|
43
44
|
- lib/souls/init.rb
|
|
44
45
|
- lib/souls/version.rb
|
|
46
|
+
- rbs/init.rbs
|
|
45
47
|
- souls.gemspec
|
|
46
48
|
homepage: https://github.com/elsoul/souls
|
|
47
49
|
licenses:
|
|
@@ -65,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
65
67
|
- !ruby/object:Gem::Version
|
|
66
68
|
version: '0'
|
|
67
69
|
requirements: []
|
|
68
|
-
rubygems_version: 3.
|
|
70
|
+
rubygems_version: 3.2.3
|
|
69
71
|
signing_key:
|
|
70
72
|
specification_version: 4
|
|
71
73
|
summary: SOULS is a Web Application Framework for Microservices on Multi Cloud Platform
|