souls 0.8.2 → 0.8.7
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/.gitignore +4 -1
- data/.rubocop.yml +6 -1
- data/Gemfile.lock +1 -1
- data/config/initializers/souls.rb +11 -10
- data/exe/souls +26 -5
- data/lib/souls.rb +1 -1
- data/lib/souls/init.rb +405 -2
- data/lib/souls/version.rb +1 -1
- data/souls.gemspec +2 -2
- metadata +5 -24
- data/souls_service-0.0.8/.env.sample +0 -1
- data/souls_service-0.0.8/.gitignore +0 -31
- data/souls_service-0.0.8/.irbrc +0 -2
- data/souls_service-0.0.8/.rubocop.yml +0 -212
- data/souls_service-0.0.8/.ruby-version +0 -1
- data/souls_service-0.0.8/.ruby_version +0 -1
- data/souls_service-0.0.8/Dockerfile +0 -16
- data/souls_service-0.0.8/Gemfile +0 -41
- data/souls_service-0.0.8/Gemfile.lock +0 -191
- data/souls_service-0.0.8/README.md +0 -75
- data/souls_service-0.0.8/Rakefile +0 -34
- data/souls_service-0.0.8/app.rb +0 -26
- data/souls_service-0.0.8/app/controllers/application_controller.rb +0 -3
- data/souls_service-0.0.8/app/controllers/article_method.rb +0 -60
- data/souls_service-0.0.8/app/controllers/hello_method.rb +0 -13
- data/souls_service-0.0.8/app/services/blog_pb.rb +0 -69
- data/souls_service-0.0.8/app/services/souls.rb +0 -30
- data/souls_service-0.0.8/config/initializers/souls.rb +0 -11
- data/souls_service-0.0.8/deployment.yml +0 -39
- data/souls_service-0.0.8/grpc_server.rb +0 -12
- data/souls_service-0.0.8/protos/blog.proto +0 -79
data/lib/souls/version.rb
CHANGED
data/souls.gemspec
CHANGED
|
@@ -3,8 +3,8 @@ require_relative 'lib/souls/version'
|
|
|
3
3
|
Gem::Specification.new do |spec|
|
|
4
4
|
spec.name = "souls"
|
|
5
5
|
spec.version = Souls::VERSION
|
|
6
|
-
spec.authors = ["POPPIN-FUMI", "KishiTheMechanic"]
|
|
7
|
-
spec.email = ["fumitake.kawasaki@el-soul.com", "shota.kishi@el-soul.com"]
|
|
6
|
+
spec.authors = ["POPPIN-FUMI", "KishiTheMechanic", "James Neve"]
|
|
7
|
+
spec.email = ["fumitake.kawasaki@el-soul.com", "shota.kishi@el-soul.com", "jamesoneve@gmail.com"]
|
|
8
8
|
|
|
9
9
|
spec.summary = "SOULS is a Web Application Framework for Microservices on Multi Cloud Platform such as Google Cloud Platform, Amazon Web Services, and Alibaba Cloud. Auto deploy with scalable condition. You can focus on business logic. No more infra problems."
|
|
10
10
|
spec.description = "SOULS is a Web Application Framework for Microservices on Multi Cloud Platform such as Google Cloud Platform, Amazon Web Services, and Alibaba Cloud. Auto deploy with scalable condition. You can focus on business logic. No more infra problems."
|
metadata
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: souls
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- POPPIN-FUMI
|
|
8
8
|
- KishiTheMechanic
|
|
9
|
+
- James Neve
|
|
9
10
|
autorequire:
|
|
10
11
|
bindir: exe
|
|
11
12
|
cert_chain: []
|
|
12
|
-
date: 2021-01-
|
|
13
|
+
date: 2021-01-21 00:00:00.000000000 Z
|
|
13
14
|
dependencies: []
|
|
14
15
|
description: SOULS is a Web Application Framework for Microservices on Multi Cloud
|
|
15
16
|
Platform such as Google Cloud Platform, Amazon Web Services, and Alibaba Cloud.
|
|
@@ -18,6 +19,7 @@ description: SOULS is a Web Application Framework for Microservices on Multi Clo
|
|
|
18
19
|
email:
|
|
19
20
|
- fumitake.kawasaki@el-soul.com
|
|
20
21
|
- shota.kishi@el-soul.com
|
|
22
|
+
- jamesoneve@gmail.com
|
|
21
23
|
executables:
|
|
22
24
|
- souls
|
|
23
25
|
extensions: []
|
|
@@ -45,27 +47,6 @@ files:
|
|
|
45
47
|
- lib/souls/version.rb
|
|
46
48
|
- rbs/init.rbs
|
|
47
49
|
- souls.gemspec
|
|
48
|
-
- souls_service-0.0.8/.env.sample
|
|
49
|
-
- souls_service-0.0.8/.gitignore
|
|
50
|
-
- souls_service-0.0.8/.irbrc
|
|
51
|
-
- souls_service-0.0.8/.rubocop.yml
|
|
52
|
-
- souls_service-0.0.8/.ruby-version
|
|
53
|
-
- souls_service-0.0.8/.ruby_version
|
|
54
|
-
- souls_service-0.0.8/Dockerfile
|
|
55
|
-
- souls_service-0.0.8/Gemfile
|
|
56
|
-
- souls_service-0.0.8/Gemfile.lock
|
|
57
|
-
- souls_service-0.0.8/README.md
|
|
58
|
-
- souls_service-0.0.8/Rakefile
|
|
59
|
-
- souls_service-0.0.8/app.rb
|
|
60
|
-
- souls_service-0.0.8/app/controllers/application_controller.rb
|
|
61
|
-
- souls_service-0.0.8/app/controllers/article_method.rb
|
|
62
|
-
- souls_service-0.0.8/app/controllers/hello_method.rb
|
|
63
|
-
- souls_service-0.0.8/app/services/blog_pb.rb
|
|
64
|
-
- souls_service-0.0.8/app/services/souls.rb
|
|
65
|
-
- souls_service-0.0.8/config/initializers/souls.rb
|
|
66
|
-
- souls_service-0.0.8/deployment.yml
|
|
67
|
-
- souls_service-0.0.8/grpc_server.rb
|
|
68
|
-
- souls_service-0.0.8/protos/blog.proto
|
|
69
50
|
- v0.0.8.tar.gz
|
|
70
51
|
homepage: https://github.com/elsoul/souls
|
|
71
52
|
licenses:
|
|
@@ -89,7 +70,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
89
70
|
- !ruby/object:Gem::Version
|
|
90
71
|
version: '0'
|
|
91
72
|
requirements: []
|
|
92
|
-
rubygems_version: 3.2.
|
|
73
|
+
rubygems_version: 3.2.3
|
|
93
74
|
signing_key:
|
|
94
75
|
specification_version: 4
|
|
95
76
|
summary: SOULS is a Web Application Framework for Microservices on Multi Cloud Platform
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
GOOGLE_APPLICATION_CREDENTIALS="./config/keyfile.json"
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
|
2
|
-
#
|
|
3
|
-
# If you find yourself ignoring temporary files generated by your text editor
|
|
4
|
-
# or operating system, you probably want to add a global ignore instead:
|
|
5
|
-
# git config --global core.excludesfile '~/.gitignore_global'
|
|
6
|
-
|
|
7
|
-
# Ignore bundler config.
|
|
8
|
-
/.bundle
|
|
9
|
-
.DS_Store
|
|
10
|
-
# Ignore all logfiles and tempfiles.
|
|
11
|
-
/log/*
|
|
12
|
-
/tmp/*
|
|
13
|
-
!/log/.keep
|
|
14
|
-
!/tmp/.keep
|
|
15
|
-
|
|
16
|
-
# Ignore pidfiles, but keep the directory.
|
|
17
|
-
/tmp/pids/*
|
|
18
|
-
!/tmp/pids/
|
|
19
|
-
!/tmp/pids/.keep
|
|
20
|
-
|
|
21
|
-
# Ignore uploaded files in development.
|
|
22
|
-
/storage/*
|
|
23
|
-
!/storage/.keep
|
|
24
|
-
.byebug_history
|
|
25
|
-
|
|
26
|
-
# Ignore master key for decrypting credentials and more.
|
|
27
|
-
/config/master.key
|
|
28
|
-
.irb_history
|
|
29
|
-
.idea
|
|
30
|
-
.env
|
|
31
|
-
/config/keyfile.json
|
data/souls_service-0.0.8/.irbrc
DELETED
|
@@ -1,212 +0,0 @@
|
|
|
1
|
-
AllCops:
|
|
2
|
-
EnabledByDefault: true
|
|
3
|
-
Exclude:
|
|
4
|
-
- "db/migrate/*.rb"
|
|
5
|
-
- "db/schema.rb"
|
|
6
|
-
- "app/services/*.rb"
|
|
7
|
-
|
|
8
|
-
Style/AndOr:
|
|
9
|
-
Enabled: false
|
|
10
|
-
|
|
11
|
-
Style/ClassAndModuleChildren:
|
|
12
|
-
Enabled: false
|
|
13
|
-
|
|
14
|
-
Style/AsciiComments:
|
|
15
|
-
Enabled: false
|
|
16
|
-
|
|
17
|
-
Style/SymbolArray:
|
|
18
|
-
Enabled: false
|
|
19
|
-
|
|
20
|
-
Style/WordArray:
|
|
21
|
-
Enabled: false
|
|
22
|
-
|
|
23
|
-
Style/MixinGrouping:
|
|
24
|
-
Enabled: false
|
|
25
|
-
|
|
26
|
-
Style/RescueStandardError:
|
|
27
|
-
Enabled: false
|
|
28
|
-
|
|
29
|
-
Style/MethodCallWithArgsParentheses:
|
|
30
|
-
Enabled: false
|
|
31
|
-
|
|
32
|
-
Style/DocumentationMethod:
|
|
33
|
-
Enabled: false
|
|
34
|
-
|
|
35
|
-
Style/CollectionMethods:
|
|
36
|
-
PreferredMethods:
|
|
37
|
-
detect: "detect"
|
|
38
|
-
find: "detect"
|
|
39
|
-
inject: "inject"
|
|
40
|
-
reduce: "inject"
|
|
41
|
-
|
|
42
|
-
Style/Documentation:
|
|
43
|
-
Enabled: false
|
|
44
|
-
|
|
45
|
-
Style/DoubleNegation:
|
|
46
|
-
Enabled: false
|
|
47
|
-
|
|
48
|
-
Lint/ConstantResolution:
|
|
49
|
-
Enabled: false
|
|
50
|
-
|
|
51
|
-
Layout/DotPosition:
|
|
52
|
-
EnforcedStyle: trailing
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
Layout/EmptyLineAfterGuardClause:
|
|
56
|
-
Enabled: false
|
|
57
|
-
|
|
58
|
-
Style/EmptyElse:
|
|
59
|
-
EnforcedStyle: empty
|
|
60
|
-
|
|
61
|
-
Layout/ExtraSpacing:
|
|
62
|
-
Exclude:
|
|
63
|
-
- "db/migrate/*.rb"
|
|
64
|
-
- "*.gemspec"
|
|
65
|
-
|
|
66
|
-
Style/FormatString:
|
|
67
|
-
EnforcedStyle: percent
|
|
68
|
-
|
|
69
|
-
Style/MissingElse:
|
|
70
|
-
Enabled: false
|
|
71
|
-
|
|
72
|
-
Style/StringHashKeys:
|
|
73
|
-
Exclude:
|
|
74
|
-
- "spec/queries/*.rb"
|
|
75
|
-
- "*.gemspec"
|
|
76
|
-
|
|
77
|
-
Style/GuardClause:
|
|
78
|
-
MinBodyLength: 5
|
|
79
|
-
Exclude:
|
|
80
|
-
- "spec/spec_helper.rb"
|
|
81
|
-
|
|
82
|
-
Style/HashSyntax:
|
|
83
|
-
EnforcedStyle: ruby19
|
|
84
|
-
Exclude:
|
|
85
|
-
- "**/*.rake"
|
|
86
|
-
- "Rakefile"
|
|
87
|
-
|
|
88
|
-
Style/IfUnlessModifier:
|
|
89
|
-
Enabled: false
|
|
90
|
-
|
|
91
|
-
Style/PreferredHashMethods:
|
|
92
|
-
EnforcedStyle: short
|
|
93
|
-
|
|
94
|
-
Style/Lambda:
|
|
95
|
-
Enabled: false
|
|
96
|
-
|
|
97
|
-
Style/NumericLiterals:
|
|
98
|
-
MinDigits: 7
|
|
99
|
-
|
|
100
|
-
Style/PerlBackrefs:
|
|
101
|
-
AutoCorrect: false
|
|
102
|
-
|
|
103
|
-
Style/RedundantSelf:
|
|
104
|
-
Enabled: false
|
|
105
|
-
|
|
106
|
-
Style/FrozenStringLiteralComment:
|
|
107
|
-
Enabled: false
|
|
108
|
-
|
|
109
|
-
Style/RedundantReturn:
|
|
110
|
-
AllowMultipleReturnValues: true
|
|
111
|
-
|
|
112
|
-
Style/Semicolon:
|
|
113
|
-
Exclude:
|
|
114
|
-
- "spec/**/*"
|
|
115
|
-
|
|
116
|
-
Style/SignalException:
|
|
117
|
-
EnforcedStyle: only_raise
|
|
118
|
-
|
|
119
|
-
Style/MethodDefParentheses:
|
|
120
|
-
Enabled: false
|
|
121
|
-
|
|
122
|
-
Style/StringLiterals:
|
|
123
|
-
EnforcedStyle: double_quotes
|
|
124
|
-
|
|
125
|
-
Style/StringLiteralsInInterpolation:
|
|
126
|
-
Enabled: false
|
|
127
|
-
|
|
128
|
-
Style/SingleLineBlockParams:
|
|
129
|
-
Enabled: false
|
|
130
|
-
|
|
131
|
-
Lint/UnderscorePrefixedVariableName:
|
|
132
|
-
Enabled: false
|
|
133
|
-
|
|
134
|
-
Lint/UnusedMethodArgument:
|
|
135
|
-
Enabled: false
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
Metrics/AbcSize:
|
|
139
|
-
Enabled: false
|
|
140
|
-
|
|
141
|
-
Metrics/CyclomaticComplexity:
|
|
142
|
-
Max: 10
|
|
143
|
-
|
|
144
|
-
Metrics/PerceivedComplexity:
|
|
145
|
-
Enabled: false
|
|
146
|
-
|
|
147
|
-
Metrics/BlockLength:
|
|
148
|
-
Enabled: false
|
|
149
|
-
|
|
150
|
-
Layout/LineLength:
|
|
151
|
-
Enabled: false
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
Metrics/MethodLength:
|
|
155
|
-
Enabled: false
|
|
156
|
-
|
|
157
|
-
Metrics/ClassLength:
|
|
158
|
-
Enabled: false
|
|
159
|
-
|
|
160
|
-
Naming/HeredocDelimiterNaming:
|
|
161
|
-
Enabled: false
|
|
162
|
-
|
|
163
|
-
Naming/AccessorMethodName:
|
|
164
|
-
Enabled: false
|
|
165
|
-
|
|
166
|
-
Metrics/ModuleLength:
|
|
167
|
-
Enabled: false
|
|
168
|
-
|
|
169
|
-
Lint/UnusedBlockArgument:
|
|
170
|
-
Enabled: false
|
|
171
|
-
|
|
172
|
-
Lint/RescueException:
|
|
173
|
-
Enabled: false
|
|
174
|
-
|
|
175
|
-
Naming/RescuedExceptionsVariableName:
|
|
176
|
-
Enabled: false
|
|
177
|
-
|
|
178
|
-
Bundler/GemComment:
|
|
179
|
-
Enabled: false
|
|
180
|
-
|
|
181
|
-
Style/SafeNavigation:
|
|
182
|
-
Enabled: false
|
|
183
|
-
|
|
184
|
-
Lint/NumberConversion:
|
|
185
|
-
Enabled: false
|
|
186
|
-
Style/ConstantVisibility:
|
|
187
|
-
Enabled: false
|
|
188
|
-
Style/MutableConstant:
|
|
189
|
-
Enabled: false
|
|
190
|
-
Style/Copyright:
|
|
191
|
-
Enabled: false
|
|
192
|
-
Style/MultilineTernaryOperator:
|
|
193
|
-
Enabled: false
|
|
194
|
-
Layout/MultilineAssignmentLayout:
|
|
195
|
-
Enabled: false
|
|
196
|
-
Style/Send:
|
|
197
|
-
Enabled: false
|
|
198
|
-
Style/MixinUsage:
|
|
199
|
-
Enabled: false
|
|
200
|
-
Style/GlobalStdStream:
|
|
201
|
-
Enabled: false
|
|
202
|
-
Lint/ConstantDefinitionInBlock:
|
|
203
|
-
Enabled: false
|
|
204
|
-
Layout/TrailingEmptyLines:
|
|
205
|
-
Enabled: false
|
|
206
|
-
Style/PercentLiteralDelimiters:
|
|
207
|
-
Enabled: false
|
|
208
|
-
Style/ClassVars:
|
|
209
|
-
Exclude:
|
|
210
|
-
- "spec/spec_helper.rb"
|
|
211
|
-
Style/StringConcatenation:
|
|
212
|
-
Enabled: false
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
2.7.2
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
2.7.2
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
FROM ruby:2.7.2
|
|
2
|
-
RUN apt-get update -qq && apt-get install -y nodejs postgresql-client
|
|
3
|
-
|
|
4
|
-
USER root
|
|
5
|
-
|
|
6
|
-
RUN mkdir /myapp
|
|
7
|
-
WORKDIR /myapp
|
|
8
|
-
|
|
9
|
-
COPY Gemfile /myapp/Gemfile
|
|
10
|
-
COPY Gemfile.lock /myapp/Gemfile.lock
|
|
11
|
-
RUN gem install bundler:2.1.4
|
|
12
|
-
RUN bundle
|
|
13
|
-
COPY . /myapp
|
|
14
|
-
|
|
15
|
-
EXPOSE 50051
|
|
16
|
-
CMD ["rake", "run_server"]
|
data/souls_service-0.0.8/Gemfile
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
source "https://rubygems.org"
|
|
2
|
-
|
|
3
|
-
gem "activerecord", require: "active_record"
|
|
4
|
-
gem "dotenv", "2.7.6"
|
|
5
|
-
gem "grpc", "1.34.0"
|
|
6
|
-
gem "grpc-tools", "1.34.0"
|
|
7
|
-
gem "jwt", "2.2.2"
|
|
8
|
-
gem "rake", "13.0.3"
|
|
9
|
-
gem "zeitwerk", "2.4.2"
|
|
10
|
-
|
|
11
|
-
## Select DB gem.
|
|
12
|
-
# Firestore
|
|
13
|
-
gem "google-cloud-firestore"
|
|
14
|
-
|
|
15
|
-
# NoSQL
|
|
16
|
-
# gem "mongoid", "7.2"
|
|
17
|
-
|
|
18
|
-
# PostgreSQL
|
|
19
|
-
# gem "pg", ">= 0.18", "< 2.0"
|
|
20
|
-
|
|
21
|
-
group :development, :test do
|
|
22
|
-
gem "byebug", platforms: %i[mri mingw x64_mingw]
|
|
23
|
-
gem "capybara", "2.18.0"
|
|
24
|
-
gem "capybara-user_agent", "0.0.3"
|
|
25
|
-
gem "database_cleaner", "1.8.5"
|
|
26
|
-
gem "factory_bot", "6.1.0"
|
|
27
|
-
gem "faker", "2.15.1"
|
|
28
|
-
gem "rack-test", "1.1.0"
|
|
29
|
-
gem "rspec", "3.10.0"
|
|
30
|
-
gem "rubocop", "1.7.0"
|
|
31
|
-
gem "souls", "0.8.0"
|
|
32
|
-
gem "webmock", "3.11.0"
|
|
33
|
-
end
|
|
34
|
-
|
|
35
|
-
group :development do
|
|
36
|
-
gem "listen", "~> 3.2"
|
|
37
|
-
gem "spring", "2.1.0"
|
|
38
|
-
gem "spring-watcher-listen", "~> 2.0.0"
|
|
39
|
-
end
|
|
40
|
-
|
|
41
|
-
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
|
|
@@ -1,191 +0,0 @@
|
|
|
1
|
-
GEM
|
|
2
|
-
remote: https://rubygems.org/
|
|
3
|
-
specs:
|
|
4
|
-
activemodel (6.1.1)
|
|
5
|
-
activesupport (= 6.1.1)
|
|
6
|
-
activerecord (6.1.1)
|
|
7
|
-
activemodel (= 6.1.1)
|
|
8
|
-
activesupport (= 6.1.1)
|
|
9
|
-
activesupport (6.1.1)
|
|
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
|
-
addressable (2.7.0)
|
|
16
|
-
public_suffix (>= 2.0.2, < 5.0)
|
|
17
|
-
ast (2.4.1)
|
|
18
|
-
byebug (11.1.3)
|
|
19
|
-
capybara (2.18.0)
|
|
20
|
-
addressable
|
|
21
|
-
mini_mime (>= 0.1.3)
|
|
22
|
-
nokogiri (>= 1.3.3)
|
|
23
|
-
rack (>= 1.0.0)
|
|
24
|
-
rack-test (>= 0.5.4)
|
|
25
|
-
xpath (>= 2.0, < 4.0)
|
|
26
|
-
capybara-user_agent (0.0.3)
|
|
27
|
-
capybara (~> 2.0, >= 2.0.2)
|
|
28
|
-
concurrent-ruby (1.1.7)
|
|
29
|
-
crack (0.4.5)
|
|
30
|
-
rexml
|
|
31
|
-
database_cleaner (1.8.5)
|
|
32
|
-
diff-lcs (1.4.4)
|
|
33
|
-
dotenv (2.7.6)
|
|
34
|
-
factory_bot (6.1.0)
|
|
35
|
-
activesupport (>= 5.0.0)
|
|
36
|
-
faker (2.15.1)
|
|
37
|
-
i18n (>= 1.6, < 2)
|
|
38
|
-
faraday (1.2.0)
|
|
39
|
-
multipart-post (>= 1.2, < 3)
|
|
40
|
-
ruby2_keywords
|
|
41
|
-
ffi (1.14.2)
|
|
42
|
-
foreman (0.87.2)
|
|
43
|
-
gapic-common (0.3.4)
|
|
44
|
-
google-protobuf (~> 3.12, >= 3.12.2)
|
|
45
|
-
googleapis-common-protos (>= 1.3.9, < 2.0)
|
|
46
|
-
googleapis-common-protos-types (>= 1.0.4, < 2.0)
|
|
47
|
-
googleauth (~> 0.9)
|
|
48
|
-
grpc (~> 1.25)
|
|
49
|
-
google-cloud-core (1.5.0)
|
|
50
|
-
google-cloud-env (~> 1.0)
|
|
51
|
-
google-cloud-errors (~> 1.0)
|
|
52
|
-
google-cloud-env (1.4.0)
|
|
53
|
-
faraday (>= 0.17.3, < 2.0)
|
|
54
|
-
google-cloud-errors (1.0.1)
|
|
55
|
-
google-cloud-firestore (2.4.0)
|
|
56
|
-
concurrent-ruby (~> 1.0)
|
|
57
|
-
google-cloud-core (~> 1.5)
|
|
58
|
-
google-cloud-firestore-v1 (~> 0.0)
|
|
59
|
-
rbtree (~> 0.4.2)
|
|
60
|
-
google-cloud-firestore-v1 (0.2.2)
|
|
61
|
-
gapic-common (~> 0.3)
|
|
62
|
-
google-cloud-errors (~> 1.0)
|
|
63
|
-
google-protobuf (3.14.0)
|
|
64
|
-
googleapis-common-protos (1.3.10)
|
|
65
|
-
google-protobuf (~> 3.11)
|
|
66
|
-
googleapis-common-protos-types (>= 1.0.5, < 2.0)
|
|
67
|
-
grpc (~> 1.27)
|
|
68
|
-
googleapis-common-protos-types (1.0.5)
|
|
69
|
-
google-protobuf (~> 3.11)
|
|
70
|
-
googleauth (0.14.0)
|
|
71
|
-
faraday (>= 0.17.3, < 2.0)
|
|
72
|
-
jwt (>= 1.4, < 3.0)
|
|
73
|
-
memoist (~> 0.16)
|
|
74
|
-
multi_json (~> 1.11)
|
|
75
|
-
os (>= 0.9, < 2.0)
|
|
76
|
-
signet (~> 0.14)
|
|
77
|
-
grpc (1.34.0)
|
|
78
|
-
google-protobuf (~> 3.13)
|
|
79
|
-
googleapis-common-protos-types (~> 1.0)
|
|
80
|
-
grpc-tools (1.34.0)
|
|
81
|
-
hashdiff (1.0.1)
|
|
82
|
-
i18n (1.8.7)
|
|
83
|
-
concurrent-ruby (~> 1.0)
|
|
84
|
-
jwt (2.2.2)
|
|
85
|
-
listen (3.4.1)
|
|
86
|
-
rb-fsevent (~> 0.10, >= 0.10.3)
|
|
87
|
-
rb-inotify (~> 0.9, >= 0.9.10)
|
|
88
|
-
memoist (0.16.2)
|
|
89
|
-
mini_mime (1.0.2)
|
|
90
|
-
mini_portile2 (2.5.0)
|
|
91
|
-
minitest (5.14.3)
|
|
92
|
-
multi_json (1.15.0)
|
|
93
|
-
multipart-post (2.1.1)
|
|
94
|
-
nokogiri (1.11.1)
|
|
95
|
-
mini_portile2 (~> 2.5.0)
|
|
96
|
-
racc (~> 1.4)
|
|
97
|
-
os (1.1.1)
|
|
98
|
-
parallel (1.20.1)
|
|
99
|
-
parser (3.0.0.0)
|
|
100
|
-
ast (~> 2.4.1)
|
|
101
|
-
public_suffix (4.0.6)
|
|
102
|
-
racc (1.5.2)
|
|
103
|
-
rack (2.2.3)
|
|
104
|
-
rack-test (1.1.0)
|
|
105
|
-
rack (>= 1.0, < 3)
|
|
106
|
-
rainbow (3.0.0)
|
|
107
|
-
rake (13.0.3)
|
|
108
|
-
rb-fsevent (0.10.4)
|
|
109
|
-
rb-inotify (0.10.1)
|
|
110
|
-
ffi (~> 1.0)
|
|
111
|
-
rbtree (0.4.2)
|
|
112
|
-
regexp_parser (2.0.2)
|
|
113
|
-
rexml (3.2.4)
|
|
114
|
-
rspec (3.10.0)
|
|
115
|
-
rspec-core (~> 3.10.0)
|
|
116
|
-
rspec-expectations (~> 3.10.0)
|
|
117
|
-
rspec-mocks (~> 3.10.0)
|
|
118
|
-
rspec-core (3.10.1)
|
|
119
|
-
rspec-support (~> 3.10.0)
|
|
120
|
-
rspec-expectations (3.10.1)
|
|
121
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
122
|
-
rspec-support (~> 3.10.0)
|
|
123
|
-
rspec-mocks (3.10.1)
|
|
124
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
125
|
-
rspec-support (~> 3.10.0)
|
|
126
|
-
rspec-support (3.10.1)
|
|
127
|
-
rubocop (1.7.0)
|
|
128
|
-
parallel (~> 1.10)
|
|
129
|
-
parser (>= 2.7.1.5)
|
|
130
|
-
rainbow (>= 2.2.2, < 4.0)
|
|
131
|
-
regexp_parser (>= 1.8, < 3.0)
|
|
132
|
-
rexml
|
|
133
|
-
rubocop-ast (>= 1.2.0, < 2.0)
|
|
134
|
-
ruby-progressbar (~> 1.7)
|
|
135
|
-
unicode-display_width (>= 1.4.0, < 2.0)
|
|
136
|
-
rubocop-ast (1.3.0)
|
|
137
|
-
parser (>= 2.7.1.5)
|
|
138
|
-
ruby-progressbar (1.10.1)
|
|
139
|
-
ruby2_keywords (0.0.2)
|
|
140
|
-
signet (0.14.0)
|
|
141
|
-
addressable (~> 2.3)
|
|
142
|
-
faraday (>= 0.17.3, < 2.0)
|
|
143
|
-
jwt (>= 1.5, < 3.0)
|
|
144
|
-
multi_json (~> 1.10)
|
|
145
|
-
souls (0.8.0)
|
|
146
|
-
spring (2.1.0)
|
|
147
|
-
spring-watcher-listen (2.0.1)
|
|
148
|
-
listen (>= 2.7, < 4.0)
|
|
149
|
-
spring (>= 1.2, < 3.0)
|
|
150
|
-
tzinfo (2.0.4)
|
|
151
|
-
concurrent-ruby (~> 1.0)
|
|
152
|
-
unicode-display_width (1.7.0)
|
|
153
|
-
webmock (3.11.0)
|
|
154
|
-
addressable (>= 2.3.6)
|
|
155
|
-
crack (>= 0.3.2)
|
|
156
|
-
hashdiff (>= 0.4.0, < 2.0.0)
|
|
157
|
-
xpath (3.2.0)
|
|
158
|
-
nokogiri (~> 1.8)
|
|
159
|
-
zeitwerk (2.4.2)
|
|
160
|
-
|
|
161
|
-
PLATFORMS
|
|
162
|
-
ruby
|
|
163
|
-
|
|
164
|
-
DEPENDENCIES
|
|
165
|
-
activerecord
|
|
166
|
-
byebug
|
|
167
|
-
capybara (= 2.18.0)
|
|
168
|
-
capybara-user_agent (= 0.0.3)
|
|
169
|
-
database_cleaner (= 1.8.5)
|
|
170
|
-
dotenv (= 2.7.6)
|
|
171
|
-
factory_bot (= 6.1.0)
|
|
172
|
-
faker (= 2.15.1)
|
|
173
|
-
foreman (= 0.87.2)
|
|
174
|
-
google-cloud-firestore
|
|
175
|
-
grpc (= 1.34.0)
|
|
176
|
-
grpc-tools (= 1.34.0)
|
|
177
|
-
jwt (= 2.2.2)
|
|
178
|
-
listen (~> 3.2)
|
|
179
|
-
rack-test (= 1.1.0)
|
|
180
|
-
rake (= 13.0.3)
|
|
181
|
-
rspec (= 3.10.0)
|
|
182
|
-
rubocop (= 1.7.0)
|
|
183
|
-
souls (= 0.8.0)
|
|
184
|
-
spring (= 2.1.0)
|
|
185
|
-
spring-watcher-listen (~> 2.0.0)
|
|
186
|
-
tzinfo-data
|
|
187
|
-
webmock (= 3.11.0)
|
|
188
|
-
zeitwerk (= 2.4.2)
|
|
189
|
-
|
|
190
|
-
BUNDLED WITH
|
|
191
|
-
2.1.4
|