souls 0.24.1 → 0.24.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/exe/souls +12 -1
- data/lib/souls.rb +181 -123
- data/lib/souls/gcloud/iam.rb +30 -16
- data/lib/souls/init.rb +22 -16
- data/lib/souls/version.rb +1 -1
- metadata +16 -193
- data/.gitignore +0 -15
- data/.irbrc +0 -2
- data/.rspec +0 -3
- data/.rubocop.yml +0 -152
- data/.ruby-version +0 -1
- data/.travis.yml +0 -6
- data/Gemfile +0 -13
- data/Gemfile.lock +0 -98
- data/Rakefile +0 -23
- data/Steepfile +0 -8
- data/api_v0.0.1.tar.gz +0 -0
- data/apps/api/.env.sample +0 -7
- data/apps/api/.gitignore +0 -32
- data/apps/api/.irbrc +0 -1
- data/apps/api/.rspec +0 -3
- data/apps/api/.rubocop.yml +0 -132
- data/apps/api/.ruby-version +0 -1
- data/apps/api/CODE_OF_CONDUCT.md +0 -74
- data/apps/api/Dockerfile +0 -16
- data/apps/api/Dockerfile.dev +0 -17
- data/apps/api/Gemfile +0 -50
- data/apps/api/Gemfile.lock +0 -412
- data/apps/api/LICENSE.txt +0 -67
- data/apps/api/Procfile +0 -2
- data/apps/api/Procfile.dev +0 -2
- data/apps/api/README.md +0 -37
- data/apps/api/Rakefile +0 -5
- data/apps/api/app.rb +0 -114
- data/apps/api/app/engines/notification_engine.rb +0 -5
- data/apps/api/app/graphql/mutations/.keep +0 -0
- data/apps/api/app/graphql/mutations/base/article/create_article.rb +0 -30
- data/apps/api/app/graphql/mutations/base/article/delete_article.rb +0 -17
- data/apps/api/app/graphql/mutations/base/article/destroy_delete_article.rb +0 -17
- data/apps/api/app/graphql/mutations/base/article/update_article.rb +0 -30
- data/apps/api/app/graphql/mutations/base/article_category/create_article_category.rb +0 -21
- data/apps/api/app/graphql/mutations/base/article_category/delete_article_category.rb +0 -17
- data/apps/api/app/graphql/mutations/base/article_category/destroy_delete_article_category.rb +0 -17
- data/apps/api/app/graphql/mutations/base/article_category/update_article_category.rb +0 -21
- data/apps/api/app/graphql/mutations/base/user/create_user.rb +0 -31
- data/apps/api/app/graphql/mutations/base/user/delete_user.rb +0 -17
- data/apps/api/app/graphql/mutations/base/user/destroy_delete_user.rb +0 -17
- data/apps/api/app/graphql/mutations/base/user/update_user.rb +0 -31
- data/apps/api/app/graphql/mutations/base_mutation.rb +0 -65
- data/apps/api/app/graphql/mutations/managers/user_manager/add_user_role.rb +0 -22
- data/apps/api/app/graphql/mutations/managers/user_manager/remove_user_role.rb +0 -22
- data/apps/api/app/graphql/mutations/managers/user_manager/sign_in_user.rb +0 -45
- data/apps/api/app/graphql/queries/article.rb +0 -13
- data/apps/api/app/graphql/queries/article_categories.rb +0 -11
- data/apps/api/app/graphql/queries/article_category.rb +0 -13
- data/apps/api/app/graphql/queries/articles.rb +0 -11
- data/apps/api/app/graphql/queries/base_query.rb +0 -12
- data/apps/api/app/graphql/queries/me.rb +0 -11
- data/apps/api/app/graphql/queries/user.rb +0 -13
- data/apps/api/app/graphql/queries/users.rb +0 -11
- data/apps/api/app/graphql/resolvers/article_category_search.rb +0 -41
- data/apps/api/app/graphql/resolvers/article_search.rb +0 -57
- data/apps/api/app/graphql/resolvers/base.rb +0 -17
- data/apps/api/app/graphql/resolvers/user_search.rb +0 -63
- data/apps/api/app/graphql/souls_api_schema.rb +0 -43
- data/apps/api/app/graphql/types/.keep +0 -0
- data/apps/api/app/graphql/types/article_category_type.rb +0 -12
- data/apps/api/app/graphql/types/article_type.rb +0 -30
- data/apps/api/app/graphql/types/base/base_argument.rb +0 -4
- data/apps/api/app/graphql/types/base/base_enum.rb +0 -4
- data/apps/api/app/graphql/types/base/base_field.rb +0 -5
- data/apps/api/app/graphql/types/base/base_input_object.rb +0 -5
- data/apps/api/app/graphql/types/base/base_interface.rb +0 -7
- data/apps/api/app/graphql/types/base/base_object.rb +0 -6
- data/apps/api/app/graphql/types/base/base_scalar.rb +0 -4
- data/apps/api/app/graphql/types/base/base_union.rb +0 -4
- data/apps/api/app/graphql/types/base/mutation_type.rb +0 -26
- data/apps/api/app/graphql/types/base/query_type.rb +0 -18
- data/apps/api/app/graphql/types/connections/article_category_connection.rb +0 -3
- data/apps/api/app/graphql/types/connections/article_connection.rb +0 -3
- data/apps/api/app/graphql/types/connections/base_connection.rb +0 -14
- data/apps/api/app/graphql/types/connections/user_connection.rb +0 -3
- data/apps/api/app/graphql/types/edges/article_category_edge.rb +0 -5
- data/apps/api/app/graphql/types/edges/article_edge.rb +0 -5
- data/apps/api/app/graphql/types/edges/base_edge.rb +0 -4
- data/apps/api/app/graphql/types/edges/user_edge.rb +0 -5
- data/apps/api/app/graphql/types/user_type.rb +0 -24
- data/apps/api/app/models/article.rb +0 -4
- data/apps/api/app/models/article_category.rb +0 -3
- data/apps/api/app/models/user.rb +0 -19
- data/apps/api/app/policies/application_policy.rb +0 -40
- data/apps/api/app/policies/article_category_policy.rb +0 -31
- data/apps/api/app/policies/article_policy.rb +0 -31
- data/apps/api/app/policies/user_policy.rb +0 -35
- data/apps/api/app/utils/association_loader.rb +0 -50
- data/apps/api/app/utils/fire_store.rb +0 -9
- data/apps/api/app/utils/firebase_id_token.rb +0 -4
- data/apps/api/app/utils/json_web_token.rb +0 -13
- data/apps/api/app/utils/record_loader.rb +0 -10
- data/apps/api/app/utils/souls_helper.rb +0 -18
- data/apps/api/cloudbuild.yml +0 -32
- data/apps/api/config.ru +0 -17
- data/apps/api/config/database.yml +0 -33
- data/apps/api/config/souls.rb +0 -10
- data/apps/api/constants/areas.rb +0 -71
- data/apps/api/constants/column_name_ja.rb +0 -27
- data/apps/api/db/migrate/20200006095538_create_users.rb +0 -30
- data/apps/api/db/migrate/20200712180236_create_article_categories.rb +0 -12
- data/apps/api/db/migrate/20200714215521_create_articles.rb +0 -22
- data/apps/api/db/schema.rb +0 -78
- data/apps/api/db/seeds.rb +0 -44
- data/apps/api/github/workflows/delivery.yml +0 -81
- data/apps/api/log/.keep +0 -0
- data/apps/api/spec/factories/article_categories.rb +0 -9
- data/apps/api/spec/factories/articles.rb +0 -17
- data/apps/api/spec/factories/users.rb +0 -23
- data/apps/api/spec/models/article_category_spec.rb +0 -7
- data/apps/api/spec/models/article_spec.rb +0 -7
- data/apps/api/spec/models/user_spec.rb +0 -7
- data/apps/api/spec/mutations/base/article_category_spec.rb +0 -46
- data/apps/api/spec/mutations/base/article_spec.rb +0 -70
- data/apps/api/spec/mutations/base/user_spec.rb +0 -76
- data/apps/api/spec/policies/article_category_policy_spec.rb +0 -25
- data/apps/api/spec/policies/article_policy_spec.rb +0 -25
- data/apps/api/spec/policies/user_policy_spec.rb +0 -5
- data/apps/api/spec/queries/article_category_spec.rb +0 -39
- data/apps/api/spec/queries/article_spec.rb +0 -53
- data/apps/api/spec/queries/user_spec.rb +0 -59
- data/apps/api/spec/resolvers/article_category_search_spec.rb +0 -54
- data/apps/api/spec/resolvers/article_search_spec.rb +0 -68
- data/apps/api/spec/resolvers/user_search_spec.rb +0 -74
- data/apps/api/spec/spec_helper.rb +0 -110
- data/apps/api/tmp/.keep +0 -0
- data/apps/worker/.env.sample +0 -9
- data/apps/worker/.gitignore +0 -32
- data/apps/worker/.irbrc +0 -1
- data/apps/worker/.rspec +0 -3
- data/apps/worker/.rubocop.yml +0 -132
- data/apps/worker/.ruby-version +0 -1
- data/apps/worker/CODE_OF_CONDUCT.md +0 -74
- data/apps/worker/Dockerfile +0 -16
- data/apps/worker/Dockerfile.dev +0 -17
- data/apps/worker/Gemfile +0 -49
- data/apps/worker/Gemfile.lock +0 -396
- data/apps/worker/LICENSE.txt +0 -67
- data/apps/worker/Procfile +0 -1
- data/apps/worker/Procfile.dev +0 -1
- data/apps/worker/README.md +0 -37
- data/apps/worker/Rakefile +0 -5
- data/apps/worker/app.rb +0 -101
- data/apps/worker/app/engines/notification_engine.rb +0 -5
- data/apps/worker/app/graphql/mutations/.keep +0 -0
- data/apps/worker/app/graphql/mutations/base_mutation.rb +0 -16
- data/apps/worker/app/graphql/mutations/workers/send_user_mail_job.rb +0 -31
- data/apps/worker/app/graphql/souls_api_schema.rb +0 -43
- data/apps/worker/app/graphql/types/.keep +0 -0
- data/apps/worker/app/graphql/types/base/base_argument.rb +0 -4
- data/apps/worker/app/graphql/types/base/base_enum.rb +0 -4
- data/apps/worker/app/graphql/types/base/base_field.rb +0 -5
- data/apps/worker/app/graphql/types/base/base_input_object.rb +0 -5
- data/apps/worker/app/graphql/types/base/base_interface.rb +0 -7
- data/apps/worker/app/graphql/types/base/base_object.rb +0 -5
- data/apps/worker/app/graphql/types/base/base_scalar.rb +0 -4
- data/apps/worker/app/graphql/types/base/base_union.rb +0 -4
- data/apps/worker/app/graphql/types/base/mutation_type.rb +0 -12
- data/apps/worker/app/graphql/types/base/query_type.rb +0 -6
- data/apps/worker/app/models/article.rb +0 -4
- data/apps/worker/app/models/article_category.rb +0 -3
- data/apps/worker/app/models/user.rb +0 -19
- data/apps/worker/app/utils/fire_store.rb +0 -9
- data/apps/worker/app/utils/souls_helper.rb +0 -96
- data/apps/worker/cloudbuild.yml +0 -32
- data/apps/worker/config.ru +0 -17
- data/apps/worker/config/database.yml +0 -33
- data/apps/worker/config/souls.rb +0 -10
- data/apps/worker/db/migrate/20200006095538_create_users.rb +0 -30
- data/apps/worker/db/migrate/20200712180236_create_article_categories.rb +0 -12
- data/apps/worker/db/migrate/20200714215521_create_articles.rb +0 -22
- data/apps/worker/db/schema.rb +0 -78
- data/apps/worker/db/seeds.rb +0 -44
- data/apps/worker/github/workflows/delivery.yml +0 -81
- data/apps/worker/log/.keep +0 -0
- data/apps/worker/spec/factories/article_categories.rb +0 -9
- data/apps/worker/spec/factories/articles.rb +0 -17
- data/apps/worker/spec/factories/users.rb +0 -23
- data/apps/worker/spec/models/article_category_spec.rb +0 -7
- data/apps/worker/spec/models/article_spec.rb +0 -7
- data/apps/worker/spec/models/user_spec.rb +0 -7
- data/apps/worker/spec/spec_helper.rb +0 -110
- data/apps/worker/tmp/.keep +0 -0
- data/bin/console +0 -14
- data/bin/setup +0 -8
- data/config/souls.rb +0 -9
- data/db/schema.rb +0 -67
- data/rbs/init.rbs +0 -2
- data/souls.gemspec +0 -34
- data/souls_api2.tar.gz +0 -0
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.24.
|
4
|
+
version: 0.24.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- POPPIN-FUMI
|
@@ -10,8 +10,22 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
|
-
date: 2021-07-
|
13
|
+
date: 2021-07-22 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: google-cloud-firestore
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
18
|
+
requirements:
|
19
|
+
- - '='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 2.6.1
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
requirements:
|
26
|
+
- - '='
|
27
|
+
- !ruby/object:Gem::Version
|
28
|
+
version: 2.6.1
|
15
29
|
- !ruby/object:Gem::Dependency
|
16
30
|
name: paint
|
17
31
|
requirement: !ruby/object:Gem::Requirement
|
@@ -53,197 +67,9 @@ executables:
|
|
53
67
|
extensions: []
|
54
68
|
extra_rdoc_files: []
|
55
69
|
files:
|
56
|
-
- ".gitignore"
|
57
|
-
- ".irbrc"
|
58
|
-
- ".rspec"
|
59
|
-
- ".rubocop.yml"
|
60
|
-
- ".ruby-version"
|
61
|
-
- ".travis.yml"
|
62
70
|
- CODE_OF_CONDUCT.md
|
63
|
-
- Gemfile
|
64
|
-
- Gemfile.lock
|
65
71
|
- LICENSE.txt
|
66
72
|
- README.md
|
67
|
-
- Rakefile
|
68
|
-
- Steepfile
|
69
|
-
- api_v0.0.1.tar.gz
|
70
|
-
- apps/api/.env.sample
|
71
|
-
- apps/api/.gitignore
|
72
|
-
- apps/api/.irbrc
|
73
|
-
- apps/api/.rspec
|
74
|
-
- apps/api/.rubocop.yml
|
75
|
-
- apps/api/.ruby-version
|
76
|
-
- apps/api/CODE_OF_CONDUCT.md
|
77
|
-
- apps/api/Dockerfile
|
78
|
-
- apps/api/Dockerfile.dev
|
79
|
-
- apps/api/Gemfile
|
80
|
-
- apps/api/Gemfile.lock
|
81
|
-
- apps/api/LICENSE.txt
|
82
|
-
- apps/api/Procfile
|
83
|
-
- apps/api/Procfile.dev
|
84
|
-
- apps/api/README.md
|
85
|
-
- apps/api/Rakefile
|
86
|
-
- apps/api/app.rb
|
87
|
-
- apps/api/app/engines/notification_engine.rb
|
88
|
-
- apps/api/app/graphql/mutations/.keep
|
89
|
-
- apps/api/app/graphql/mutations/base/article/create_article.rb
|
90
|
-
- apps/api/app/graphql/mutations/base/article/delete_article.rb
|
91
|
-
- apps/api/app/graphql/mutations/base/article/destroy_delete_article.rb
|
92
|
-
- apps/api/app/graphql/mutations/base/article/update_article.rb
|
93
|
-
- apps/api/app/graphql/mutations/base/article_category/create_article_category.rb
|
94
|
-
- apps/api/app/graphql/mutations/base/article_category/delete_article_category.rb
|
95
|
-
- apps/api/app/graphql/mutations/base/article_category/destroy_delete_article_category.rb
|
96
|
-
- apps/api/app/graphql/mutations/base/article_category/update_article_category.rb
|
97
|
-
- apps/api/app/graphql/mutations/base/user/create_user.rb
|
98
|
-
- apps/api/app/graphql/mutations/base/user/delete_user.rb
|
99
|
-
- apps/api/app/graphql/mutations/base/user/destroy_delete_user.rb
|
100
|
-
- apps/api/app/graphql/mutations/base/user/update_user.rb
|
101
|
-
- apps/api/app/graphql/mutations/base_mutation.rb
|
102
|
-
- apps/api/app/graphql/mutations/managers/user_manager/add_user_role.rb
|
103
|
-
- apps/api/app/graphql/mutations/managers/user_manager/remove_user_role.rb
|
104
|
-
- apps/api/app/graphql/mutations/managers/user_manager/sign_in_user.rb
|
105
|
-
- apps/api/app/graphql/queries/article.rb
|
106
|
-
- apps/api/app/graphql/queries/article_categories.rb
|
107
|
-
- apps/api/app/graphql/queries/article_category.rb
|
108
|
-
- apps/api/app/graphql/queries/articles.rb
|
109
|
-
- apps/api/app/graphql/queries/base_query.rb
|
110
|
-
- apps/api/app/graphql/queries/me.rb
|
111
|
-
- apps/api/app/graphql/queries/user.rb
|
112
|
-
- apps/api/app/graphql/queries/users.rb
|
113
|
-
- apps/api/app/graphql/resolvers/article_category_search.rb
|
114
|
-
- apps/api/app/graphql/resolvers/article_search.rb
|
115
|
-
- apps/api/app/graphql/resolvers/base.rb
|
116
|
-
- apps/api/app/graphql/resolvers/user_search.rb
|
117
|
-
- apps/api/app/graphql/souls_api_schema.rb
|
118
|
-
- apps/api/app/graphql/types/.keep
|
119
|
-
- apps/api/app/graphql/types/article_category_type.rb
|
120
|
-
- apps/api/app/graphql/types/article_type.rb
|
121
|
-
- apps/api/app/graphql/types/base/base_argument.rb
|
122
|
-
- apps/api/app/graphql/types/base/base_enum.rb
|
123
|
-
- apps/api/app/graphql/types/base/base_field.rb
|
124
|
-
- apps/api/app/graphql/types/base/base_input_object.rb
|
125
|
-
- apps/api/app/graphql/types/base/base_interface.rb
|
126
|
-
- apps/api/app/graphql/types/base/base_object.rb
|
127
|
-
- apps/api/app/graphql/types/base/base_scalar.rb
|
128
|
-
- apps/api/app/graphql/types/base/base_union.rb
|
129
|
-
- apps/api/app/graphql/types/base/mutation_type.rb
|
130
|
-
- apps/api/app/graphql/types/base/query_type.rb
|
131
|
-
- apps/api/app/graphql/types/connections/article_category_connection.rb
|
132
|
-
- apps/api/app/graphql/types/connections/article_connection.rb
|
133
|
-
- apps/api/app/graphql/types/connections/base_connection.rb
|
134
|
-
- apps/api/app/graphql/types/connections/user_connection.rb
|
135
|
-
- apps/api/app/graphql/types/edges/article_category_edge.rb
|
136
|
-
- apps/api/app/graphql/types/edges/article_edge.rb
|
137
|
-
- apps/api/app/graphql/types/edges/base_edge.rb
|
138
|
-
- apps/api/app/graphql/types/edges/user_edge.rb
|
139
|
-
- apps/api/app/graphql/types/user_type.rb
|
140
|
-
- apps/api/app/models/article.rb
|
141
|
-
- apps/api/app/models/article_category.rb
|
142
|
-
- apps/api/app/models/user.rb
|
143
|
-
- apps/api/app/policies/application_policy.rb
|
144
|
-
- apps/api/app/policies/article_category_policy.rb
|
145
|
-
- apps/api/app/policies/article_policy.rb
|
146
|
-
- apps/api/app/policies/user_policy.rb
|
147
|
-
- apps/api/app/utils/association_loader.rb
|
148
|
-
- apps/api/app/utils/fire_store.rb
|
149
|
-
- apps/api/app/utils/firebase_id_token.rb
|
150
|
-
- apps/api/app/utils/json_web_token.rb
|
151
|
-
- apps/api/app/utils/record_loader.rb
|
152
|
-
- apps/api/app/utils/souls_helper.rb
|
153
|
-
- apps/api/cloudbuild.yml
|
154
|
-
- apps/api/config.ru
|
155
|
-
- apps/api/config/database.yml
|
156
|
-
- apps/api/config/souls.rb
|
157
|
-
- apps/api/constants/areas.rb
|
158
|
-
- apps/api/constants/column_name_ja.rb
|
159
|
-
- apps/api/db/migrate/20200006095538_create_users.rb
|
160
|
-
- apps/api/db/migrate/20200712180236_create_article_categories.rb
|
161
|
-
- apps/api/db/migrate/20200714215521_create_articles.rb
|
162
|
-
- apps/api/db/schema.rb
|
163
|
-
- apps/api/db/seeds.rb
|
164
|
-
- apps/api/github/workflows/delivery.yml
|
165
|
-
- apps/api/log/.keep
|
166
|
-
- apps/api/spec/factories/article_categories.rb
|
167
|
-
- apps/api/spec/factories/articles.rb
|
168
|
-
- apps/api/spec/factories/users.rb
|
169
|
-
- apps/api/spec/models/article_category_spec.rb
|
170
|
-
- apps/api/spec/models/article_spec.rb
|
171
|
-
- apps/api/spec/models/user_spec.rb
|
172
|
-
- apps/api/spec/mutations/base/article_category_spec.rb
|
173
|
-
- apps/api/spec/mutations/base/article_spec.rb
|
174
|
-
- apps/api/spec/mutations/base/user_spec.rb
|
175
|
-
- apps/api/spec/policies/article_category_policy_spec.rb
|
176
|
-
- apps/api/spec/policies/article_policy_spec.rb
|
177
|
-
- apps/api/spec/policies/user_policy_spec.rb
|
178
|
-
- apps/api/spec/queries/article_category_spec.rb
|
179
|
-
- apps/api/spec/queries/article_spec.rb
|
180
|
-
- apps/api/spec/queries/user_spec.rb
|
181
|
-
- apps/api/spec/resolvers/article_category_search_spec.rb
|
182
|
-
- apps/api/spec/resolvers/article_search_spec.rb
|
183
|
-
- apps/api/spec/resolvers/user_search_spec.rb
|
184
|
-
- apps/api/spec/spec_helper.rb
|
185
|
-
- apps/api/tmp/.keep
|
186
|
-
- apps/worker/.env.sample
|
187
|
-
- apps/worker/.gitignore
|
188
|
-
- apps/worker/.irbrc
|
189
|
-
- apps/worker/.rspec
|
190
|
-
- apps/worker/.rubocop.yml
|
191
|
-
- apps/worker/.ruby-version
|
192
|
-
- apps/worker/CODE_OF_CONDUCT.md
|
193
|
-
- apps/worker/Dockerfile
|
194
|
-
- apps/worker/Dockerfile.dev
|
195
|
-
- apps/worker/Gemfile
|
196
|
-
- apps/worker/Gemfile.lock
|
197
|
-
- apps/worker/LICENSE.txt
|
198
|
-
- apps/worker/Procfile
|
199
|
-
- apps/worker/Procfile.dev
|
200
|
-
- apps/worker/README.md
|
201
|
-
- apps/worker/Rakefile
|
202
|
-
- apps/worker/app.rb
|
203
|
-
- apps/worker/app/engines/notification_engine.rb
|
204
|
-
- apps/worker/app/graphql/mutations/.keep
|
205
|
-
- apps/worker/app/graphql/mutations/base_mutation.rb
|
206
|
-
- apps/worker/app/graphql/mutations/workers/send_user_mail_job.rb
|
207
|
-
- apps/worker/app/graphql/souls_api_schema.rb
|
208
|
-
- apps/worker/app/graphql/types/.keep
|
209
|
-
- apps/worker/app/graphql/types/base/base_argument.rb
|
210
|
-
- apps/worker/app/graphql/types/base/base_enum.rb
|
211
|
-
- apps/worker/app/graphql/types/base/base_field.rb
|
212
|
-
- apps/worker/app/graphql/types/base/base_input_object.rb
|
213
|
-
- apps/worker/app/graphql/types/base/base_interface.rb
|
214
|
-
- apps/worker/app/graphql/types/base/base_object.rb
|
215
|
-
- apps/worker/app/graphql/types/base/base_scalar.rb
|
216
|
-
- apps/worker/app/graphql/types/base/base_union.rb
|
217
|
-
- apps/worker/app/graphql/types/base/mutation_type.rb
|
218
|
-
- apps/worker/app/graphql/types/base/query_type.rb
|
219
|
-
- apps/worker/app/models/article.rb
|
220
|
-
- apps/worker/app/models/article_category.rb
|
221
|
-
- apps/worker/app/models/user.rb
|
222
|
-
- apps/worker/app/utils/fire_store.rb
|
223
|
-
- apps/worker/app/utils/souls_helper.rb
|
224
|
-
- apps/worker/cloudbuild.yml
|
225
|
-
- apps/worker/config.ru
|
226
|
-
- apps/worker/config/database.yml
|
227
|
-
- apps/worker/config/souls.rb
|
228
|
-
- apps/worker/db/migrate/20200006095538_create_users.rb
|
229
|
-
- apps/worker/db/migrate/20200712180236_create_article_categories.rb
|
230
|
-
- apps/worker/db/migrate/20200714215521_create_articles.rb
|
231
|
-
- apps/worker/db/schema.rb
|
232
|
-
- apps/worker/db/seeds.rb
|
233
|
-
- apps/worker/github/workflows/delivery.yml
|
234
|
-
- apps/worker/log/.keep
|
235
|
-
- apps/worker/spec/factories/article_categories.rb
|
236
|
-
- apps/worker/spec/factories/articles.rb
|
237
|
-
- apps/worker/spec/factories/users.rb
|
238
|
-
- apps/worker/spec/models/article_category_spec.rb
|
239
|
-
- apps/worker/spec/models/article_spec.rb
|
240
|
-
- apps/worker/spec/models/user_spec.rb
|
241
|
-
- apps/worker/spec/spec_helper.rb
|
242
|
-
- apps/worker/tmp/.keep
|
243
|
-
- bin/console
|
244
|
-
- bin/setup
|
245
|
-
- config/souls.rb
|
246
|
-
- db/schema.rb
|
247
73
|
- exe/souls
|
248
74
|
- lib/souls.rb
|
249
75
|
- lib/souls/gcloud.rb
|
@@ -268,9 +94,6 @@ files:
|
|
268
94
|
- lib/souls/generate/type.rb
|
269
95
|
- lib/souls/init.rb
|
270
96
|
- lib/souls/version.rb
|
271
|
-
- rbs/init.rbs
|
272
|
-
- souls.gemspec
|
273
|
-
- souls_api2.tar.gz
|
274
97
|
homepage: https://souls.elsoul.nl
|
275
98
|
licenses:
|
276
99
|
- Apache-2.0
|
data/.gitignore
DELETED
data/.irbrc
DELETED
data/.rspec
DELETED
data/.rubocop.yml
DELETED
@@ -1,152 +0,0 @@
|
|
1
|
-
require: rubocop-graphql
|
2
|
-
AllCops:
|
3
|
-
SuggestExtensions: false
|
4
|
-
EnabledByDefault: true
|
5
|
-
Exclude:
|
6
|
-
- "app/**/*.rb"
|
7
|
-
- "db/migrate/*.rb"
|
8
|
-
- "db/schema.rb"
|
9
|
-
- "spec/spec_helper.rb"
|
10
|
-
- "spec/**/*.rb"
|
11
|
-
- "lib/souls/generate/type.rb"
|
12
|
-
|
13
|
-
Style/Copyright:
|
14
|
-
Description: "Include a copyright notice in each file before any code."
|
15
|
-
Enabled: false
|
16
|
-
VersionAdded: "0.30"
|
17
|
-
Notice: '^Copyright (\(c\) )?2[0-9]{3} .+'
|
18
|
-
AutocorrectNotice: "Copyright 2021 by ELSOUL LABO B.V."
|
19
|
-
|
20
|
-
Style/TopLevelMethodDefinition:
|
21
|
-
Exclude:
|
22
|
-
- "db/seeds.rb"
|
23
|
-
- "spec/spec_helper.rb"
|
24
|
-
|
25
|
-
Style/IpAddresses:
|
26
|
-
Exclude:
|
27
|
-
- "config.ru"
|
28
|
-
- "Gemfile"
|
29
|
-
|
30
|
-
Style/HashSyntax:
|
31
|
-
EnforcedStyle: ruby19
|
32
|
-
Exclude:
|
33
|
-
- "**/*.rake"
|
34
|
-
- "Rakefile"
|
35
|
-
|
36
|
-
Style/Semicolon:
|
37
|
-
Exclude:
|
38
|
-
- "spec/**/*"
|
39
|
-
|
40
|
-
Style/StringLiterals:
|
41
|
-
EnforcedStyle: double_quotes
|
42
|
-
|
43
|
-
Style/ClassVars:
|
44
|
-
Exclude:
|
45
|
-
- "spec/spec_helper.rb"
|
46
|
-
Style/StringConcatenation:
|
47
|
-
Enabled: false
|
48
|
-
|
49
|
-
Style/Documentation:
|
50
|
-
Enabled: false
|
51
|
-
|
52
|
-
Style/DocumentationMethod:
|
53
|
-
Enabled: false
|
54
|
-
|
55
|
-
Style/FrozenStringLiteralComment:
|
56
|
-
Enabled: false
|
57
|
-
Style/Lambda:
|
58
|
-
EnforcedStyle: literal
|
59
|
-
|
60
|
-
Style/AsciiComments:
|
61
|
-
Enabled: false
|
62
|
-
|
63
|
-
Style/MissingElse:
|
64
|
-
Enabled: false
|
65
|
-
|
66
|
-
Style/StringHashKeys:
|
67
|
-
Exclude:
|
68
|
-
- "spec/**/*.rb"
|
69
|
-
|
70
|
-
Style/CollectionMethods:
|
71
|
-
Enabled: false
|
72
|
-
|
73
|
-
Style/FormatString:
|
74
|
-
Enabled: false
|
75
|
-
|
76
|
-
Style/ClassAndModuleChildren:
|
77
|
-
Enabled: false
|
78
|
-
|
79
|
-
Style/FormatStringToken:
|
80
|
-
Enabled: false
|
81
|
-
|
82
|
-
Style/ClassMethodsDefinitions:
|
83
|
-
Enabled: false
|
84
|
-
|
85
|
-
Layout/ExtraSpacing:
|
86
|
-
Exclude:
|
87
|
-
- "db/migrate/*.rb"
|
88
|
-
|
89
|
-
Layout/LineLength:
|
90
|
-
Exclude:
|
91
|
-
- "lib/souls/generate/rspec_mutation.rb"
|
92
|
-
- "lib/souls/generate/resolver.rb"
|
93
|
-
|
94
|
-
Layout/LineEndStringConcatenationIndentation:
|
95
|
-
Enabled: false
|
96
|
-
|
97
|
-
GraphQL/ObjectDescription:
|
98
|
-
Enabled: false
|
99
|
-
|
100
|
-
GraphQL/FieldDescription:
|
101
|
-
Enabled: false
|
102
|
-
|
103
|
-
GraphQL/ArgumentDescription:
|
104
|
-
Enabled: false
|
105
|
-
|
106
|
-
GraphQL/ExtractInputType:
|
107
|
-
Enabled: false
|
108
|
-
|
109
|
-
GraphQL/ExtractType:
|
110
|
-
Enabled: false
|
111
|
-
|
112
|
-
GraphQL/ArgumentName:
|
113
|
-
Enabled: false
|
114
|
-
|
115
|
-
Lint/ConstantResolution:
|
116
|
-
Enabled: false
|
117
|
-
|
118
|
-
Lint/NumberConversion:
|
119
|
-
Enabled: false
|
120
|
-
|
121
|
-
Lint/MissingSuper:
|
122
|
-
Enabled: false
|
123
|
-
|
124
|
-
Metrics/AbcSize:
|
125
|
-
Enabled: false
|
126
|
-
|
127
|
-
Metrics/MethodLength:
|
128
|
-
Enabled: false
|
129
|
-
|
130
|
-
Metrics/BlockLength:
|
131
|
-
Enabled: false
|
132
|
-
|
133
|
-
Metrics/CyclomaticComplexity:
|
134
|
-
Enabled: false
|
135
|
-
|
136
|
-
Metrics/PerceivedComplexity:
|
137
|
-
Enabled: false
|
138
|
-
|
139
|
-
Metrics/ModuleLength:
|
140
|
-
Enabled: false
|
141
|
-
|
142
|
-
Metrics/BlockNesting:
|
143
|
-
Enabled: false
|
144
|
-
|
145
|
-
Naming/AccessorMethodName:
|
146
|
-
Enabled: false
|
147
|
-
|
148
|
-
Naming/PredicateName:
|
149
|
-
Enabled: false
|
150
|
-
|
151
|
-
Bundler/GemComment:
|
152
|
-
Enabled: false
|
data/.ruby-version
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
3.0.1
|
data/.travis.yml
DELETED
data/Gemfile
DELETED
@@ -1,13 +0,0 @@
|
|
1
|
-
source "https://rubygems.org"
|
2
|
-
|
3
|
-
# Specify your gem's dependencies in souls.gemspec
|
4
|
-
gemspec
|
5
|
-
|
6
|
-
gem "activesupport", "6.1.4"
|
7
|
-
gem "paint", "2.2.1"
|
8
|
-
gem "parser", "3.0.2.0"
|
9
|
-
gem "rake", "13.0.6"
|
10
|
-
gem "rspec", "3.10.0"
|
11
|
-
gem "rubocop", "1.18.3"
|
12
|
-
gem "steep", "0.44.1"
|
13
|
-
gem "whirly", "0.3.0"
|