souls 0.7.3 → 0.7.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '08a1ab75d267de552b5a5fb5e0b6e9ad35a61aeed0ff2167132bc19fdd7831b3'
4
- data.tar.gz: 9d4f4ae3d1b9f4b3814eb469a2652ae86493cd3bc430fc02cc0ba48d62f07f3c
3
+ metadata.gz: '0823980d65837aead6add63c442e3c750572c64289f926e5f1b0ed361ce634ab'
4
+ data.tar.gz: be2292aa74d90857fffe33cc5b24af875311db2c25a94c16955c16515f57736d
5
5
  SHA512:
6
- metadata.gz: bcf2e667107e76569b1a4039b594fc03728add902700b2a097fd558c99a665c7184355c779d645dbe095601bfcea4ad2d2bd3f9875af696335ae44fab4017443
7
- data.tar.gz: 9ff355f1fb46dfe32bb75340f6a996d6edba6da88178471bf35a7c6305b9819efff7539a3d574c23efb25c17966c10c19d7fb81a2c75aced162c37f1e0208a35
6
+ metadata.gz: 9a8fd3de8cd42aa0997d5f8691fcc028ecae4443443f712e40eb61a1fa412f04468e636acbaceeab19c84b3db7ef953a4b345c201a1e2b151cb82f438fe916d2
7
+ data.tar.gz: a1c928ce66ef6dc9e240f5e96f5693fc9dc19a7c1193b763b94ebd1d4ff7ffafdaabf45d414a9b22236ce3990b6eaad4139d7fdc95d683dd8b6fe19a741a1201
data/.irbrc CHANGED
@@ -1,3 +1,2 @@
1
1
  require "souls"
2
- require "./config/initialize/souls"
3
- require "google/cloud/firestore"
2
+ require "./config/initialize/souls"
@@ -1 +1 @@
1
- 2.7.2
1
+ 3.0.0
data/Gemfile CHANGED
@@ -5,3 +5,4 @@ gemspec
5
5
 
6
6
  gem "rake", "13.0.3"
7
7
  gem "rspec", "3.1.0"
8
+ gem "steep", "0.39.0"
@@ -1,13 +1,39 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- souls (0.7.3)
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.1.4
72
+ 2.2.4
@@ -0,0 +1,9 @@
1
+ # Steepfile
2
+
3
+ target :app do
4
+ signature "lib/souls/"
5
+
6
+ # check 'app'
7
+ check "rbs"
8
+
9
+ end
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 "test"
45
- system "ruby greeter_client.rb 'SOULS TEST RUN!'"
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
@@ -1,3 +1,3 @@
1
1
  module Souls
2
- VERSION = "0.7.3"
2
+ VERSION = "0.7.5"
3
3
  end
@@ -0,0 +1,2 @@
1
+ module Souls
2
+ end
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.3
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-02 00:00:00.000000000 Z
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.1.4
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