souls 0.22.8 → 0.22.9
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/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/exe/souls +7 -8
- data/lib/souls.rb +5 -1
- data/lib/souls/init.rb +1 -1
- data/lib/souls/version.rb +1 -1
- data/souls.gemspec +1 -1
- metadata +3 -117
- data/hoy/.env.sample +0 -7
- data/hoy/.gitignore +0 -32
- data/hoy/.irbrc +0 -1
- data/hoy/.rspec +0 -3
- data/hoy/.rubocop.yml +0 -132
- data/hoy/.ruby-version +0 -1
- data/hoy/CODE_OF_CONDUCT.md +0 -74
- data/hoy/Dockerfile +0 -16
- data/hoy/Dockerfile.dev +0 -17
- data/hoy/Gemfile +0 -50
- data/hoy/Gemfile.lock +0 -407
- data/hoy/LICENSE.txt +0 -67
- data/hoy/Procfile +0 -2
- data/hoy/Procfile.dev +0 -2
- data/hoy/README.md +0 -61
- data/hoy/Rakefile +0 -5
- data/hoy/app.rb +0 -116
- data/hoy/app/graphql/mutations/.keep +0 -0
- data/hoy/app/graphql/mutations/base/article/create_article.rb +0 -30
- data/hoy/app/graphql/mutations/base/article/delete_article.rb +0 -17
- data/hoy/app/graphql/mutations/base/article/destroy_delete_article.rb +0 -17
- data/hoy/app/graphql/mutations/base/article/update_article.rb +0 -30
- data/hoy/app/graphql/mutations/base/article_category/create_article_category.rb +0 -21
- data/hoy/app/graphql/mutations/base/article_category/delete_article_category.rb +0 -17
- data/hoy/app/graphql/mutations/base/article_category/destroy_delete_article_category.rb +0 -17
- data/hoy/app/graphql/mutations/base/article_category/update_article_category.rb +0 -21
- data/hoy/app/graphql/mutations/base/user/create_user.rb +0 -31
- data/hoy/app/graphql/mutations/base/user/delete_user.rb +0 -17
- data/hoy/app/graphql/mutations/base/user/destroy_delete_user.rb +0 -17
- data/hoy/app/graphql/mutations/base/user/update_user.rb +0 -31
- data/hoy/app/graphql/mutations/base_mutation.rb +0 -33
- data/hoy/app/graphql/mutations/user_manager/add_user_role.rb +0 -22
- data/hoy/app/graphql/mutations/user_manager/remove_user_role.rb +0 -22
- data/hoy/app/graphql/mutations/user_manager/sign_in_user.rb +0 -45
- data/hoy/app/graphql/queries/article.rb +0 -13
- data/hoy/app/graphql/queries/article_categories.rb +0 -11
- data/hoy/app/graphql/queries/article_category.rb +0 -13
- data/hoy/app/graphql/queries/articles.rb +0 -11
- data/hoy/app/graphql/queries/base_query.rb +0 -9
- data/hoy/app/graphql/queries/me.rb +0 -11
- data/hoy/app/graphql/queries/user.rb +0 -13
- data/hoy/app/graphql/queries/users.rb +0 -11
- data/hoy/app/graphql/resolvers/article_category_search.rb +0 -41
- data/hoy/app/graphql/resolvers/article_search.rb +0 -57
- data/hoy/app/graphql/resolvers/base.rb +0 -17
- data/hoy/app/graphql/resolvers/user_search.rb +0 -63
- data/hoy/app/graphql/souls_api_schema.rb +0 -43
- data/hoy/app/graphql/types/.keep +0 -0
- data/hoy/app/graphql/types/article_category_type.rb +0 -12
- data/hoy/app/graphql/types/article_type.rb +0 -30
- data/hoy/app/graphql/types/base/base_argument.rb +0 -4
- data/hoy/app/graphql/types/base/base_enum.rb +0 -4
- data/hoy/app/graphql/types/base/base_field.rb +0 -5
- data/hoy/app/graphql/types/base/base_input_object.rb +0 -5
- data/hoy/app/graphql/types/base/base_interface.rb +0 -7
- data/hoy/app/graphql/types/base/base_object.rb +0 -6
- data/hoy/app/graphql/types/base/base_scalar.rb +0 -4
- data/hoy/app/graphql/types/base/base_union.rb +0 -4
- data/hoy/app/graphql/types/base/mutation_type.rb +0 -16
- data/hoy/app/graphql/types/base/query_type.rb +0 -18
- data/hoy/app/graphql/types/connections/article_category_connection.rb +0 -3
- data/hoy/app/graphql/types/connections/article_connection.rb +0 -3
- data/hoy/app/graphql/types/connections/base_connection.rb +0 -14
- data/hoy/app/graphql/types/connections/user_connection.rb +0 -3
- data/hoy/app/graphql/types/edges/article_category_edge.rb +0 -5
- data/hoy/app/graphql/types/edges/article_edge.rb +0 -5
- data/hoy/app/graphql/types/edges/base_edge.rb +0 -4
- data/hoy/app/graphql/types/edges/user_edge.rb +0 -5
- data/hoy/app/graphql/types/user_type.rb +0 -22
- data/hoy/app/models/article.rb +0 -4
- data/hoy/app/models/article_category.rb +0 -3
- data/hoy/app/models/user.rb +0 -19
- data/hoy/app/policies/application_policy.rb +0 -40
- data/hoy/app/policies/article_category_policy.rb +0 -31
- data/hoy/app/policies/article_policy.rb +0 -31
- data/hoy/app/policies/user_policy.rb +0 -35
- data/hoy/app/utils/association_loader.rb +0 -50
- data/hoy/app/utils/firebase_id_token.rb +0 -4
- data/hoy/app/utils/json_web_token.rb +0 -13
- data/hoy/app/utils/record_loader.rb +0 -10
- data/hoy/app/utils/souls_helper.rb +0 -96
- data/hoy/cloudbuild.yml +0 -32
- data/hoy/config.ru +0 -17
- data/hoy/config/database.yml +0 -33
- data/hoy/config/souls.rb +0 -4
- data/hoy/constants/areas.rb +0 -71
- data/hoy/constants/column_name_ja.rb +0 -27
- data/hoy/db/migrate/20200006095538_create_users.rb +0 -30
- data/hoy/db/migrate/20200712180236_create_article_categories.rb +0 -12
- data/hoy/db/migrate/20200714215521_create_articles.rb +0 -22
- data/hoy/db/schema.rb +0 -78
- data/hoy/db/seeds.rb +0 -44
- data/hoy/github/workflows/delivery.yml +0 -81
- data/hoy/log/.keep +0 -0
- data/hoy/spec/factories/article_categories.rb +0 -9
- data/hoy/spec/factories/articles.rb +0 -17
- data/hoy/spec/factories/users.rb +0 -23
- data/hoy/spec/models/article_category_spec.rb +0 -7
- data/hoy/spec/models/article_spec.rb +0 -7
- data/hoy/spec/models/user_spec.rb +0 -7
- data/hoy/spec/mutations/base/article_category_spec.rb +0 -46
- data/hoy/spec/mutations/base/article_spec.rb +0 -70
- data/hoy/spec/mutations/base/user_spec.rb +0 -76
- data/hoy/spec/policies/article_category_policy_spec.rb +0 -25
- data/hoy/spec/policies/article_policy_spec.rb +0 -25
- data/hoy/spec/policies/user_policy_spec.rb +0 -5
- data/hoy/spec/queries/article_category_spec.rb +0 -39
- data/hoy/spec/queries/article_spec.rb +0 -53
- data/hoy/spec/queries/user_spec.rb +0 -59
- data/hoy/spec/resolvers/article_category_search_spec.rb +0 -54
- data/hoy/spec/resolvers/article_search_spec.rb +0 -68
- data/hoy/spec/resolvers/user_search_spec.rb +0 -74
- data/hoy/spec/spec_helper.rb +0 -110
- data/hoy/tmp/.keep +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d4743791a22f8b54e87e3a64e86d1e9c1788ee935fddc3613d8d8ae199d88094
|
4
|
+
data.tar.gz: 4efd188ab4db345f57cc8e74480c9bfd95ef120122f55311644cc036166a370a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71938d1f307ff795e6bce9acb49825bf76d494b8677433b1b4fb84f8ccdbf9b59c397405c41ebd529b5a121cffd9ae14c56b35c304ebf737544e62e55678fd79
|
7
|
+
data.tar.gz: a24bc9987ab8bdc55d170d512ef66472184ab5d69f147af49331c3f6a67055b6cc95c67ccee965ffe011177fd5bb48f2fb8acfefc589a3ec3898290a57621ac9
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
data/exe/souls
CHANGED
@@ -10,7 +10,8 @@ begin
|
|
10
10
|
when "new"
|
11
11
|
STRAINS = ["api", "worker", "console", "admin", "media"]
|
12
12
|
if ARGV[1].nil?
|
13
|
-
puts "you need to specify your app name
|
13
|
+
puts Paint["you need to specify your app name", :red]
|
14
|
+
puts Paint["`souls new app_name`", :yellow]
|
14
15
|
exit
|
15
16
|
end
|
16
17
|
first_message = Paint % [
|
@@ -31,13 +32,13 @@ begin
|
|
31
32
|
Souls::Init.download_souls app_name: ARGV[1], repository_name: "souls_#{STRAINS[strain.to_i - 1]}"
|
32
33
|
Souls::Init.initial_config_init app_name: ARGV[1], strain: STRAINS[strain.to_i - 1]
|
33
34
|
else
|
34
|
-
puts "Coming Soon..."
|
35
|
+
puts Paint["Coming Soon...", :blue]
|
35
36
|
end
|
36
37
|
|
37
38
|
when "s", "server"
|
38
39
|
strain = Souls.configuration.strain
|
39
40
|
case strain
|
40
|
-
when "media", "admin"
|
41
|
+
when "media", "admin", "console"
|
41
42
|
system "yarn dev"
|
42
43
|
when "worker"
|
43
44
|
system "bundle exec puma -p 3000 -e development"
|
@@ -65,7 +66,7 @@ begin
|
|
65
66
|
puts Souls::VERSION
|
66
67
|
when "gem:update", "gemfile:update"
|
67
68
|
status = Paint["Checking for updates...", :yellow]
|
68
|
-
Whirly.start spinner: "clock",
|
69
|
+
Whirly.start spinner: "clock", interval: 1000, stop: "🎉" do
|
69
70
|
Whirly.status = status
|
70
71
|
Souls.update_gemfile
|
71
72
|
Whirly.status = "Done!"
|
@@ -185,10 +186,8 @@ begin
|
|
185
186
|
when "deploy"
|
186
187
|
system "gcloud builds submit --config=cloudbuild.yml --project #{ARGV[1]}"
|
187
188
|
else
|
188
|
-
puts "Welcome to SOULs!"
|
189
|
+
puts Paint["Welcome to SOULs!", :green]
|
189
190
|
end
|
190
191
|
rescue StandardError => error
|
191
|
-
puts
|
192
|
-
puts "Thank you!!"
|
193
|
-
puts "SOULs"
|
192
|
+
puts Paint["Something Wrong...", :red]
|
194
193
|
end
|
data/lib/souls.rb
CHANGED
@@ -96,7 +96,11 @@ module Souls
|
|
96
96
|
updated_gems << (gem[0]).to_s
|
97
97
|
updated_gem_versions << data["version"]
|
98
98
|
system "gem update #{gem[0]}"
|
99
|
-
console_log <<
|
99
|
+
console_log << if gem[0] == "souls"
|
100
|
+
"#{gem[0]} v#{gem[1]} → v#{data["version"]}\n\nSOULs Doc: https://souls.elsoul.nl"
|
101
|
+
else
|
102
|
+
"#{gem[0]} v#{gem[1]} → v#{data["version"]}"
|
103
|
+
end
|
100
104
|
end
|
101
105
|
end
|
102
106
|
{
|
data/lib/souls/init.rb
CHANGED
@@ -49,7 +49,7 @@ module Souls
|
|
49
49
|
souls_ver = Paint["SOULs Version: #{Souls::VERSION}", :white]
|
50
50
|
puts souls_ver
|
51
51
|
puts line
|
52
|
-
cd = Paint["Easy to Run\n$ cd #{app_name}\n$ bundle\n$ souls s\nGo To : http://localhost:3000\n\nDoc: https://souls
|
52
|
+
cd = Paint["Easy to Run\n$ cd #{app_name}\n$ bundle\n$ souls s\nGo To : http://localhost:3000\n\nDoc: https://souls.elsoul.nl", :white]
|
53
53
|
puts cd
|
54
54
|
puts line
|
55
55
|
end
|
data/lib/souls/version.rb
CHANGED
data/souls.gemspec
CHANGED
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
|
|
8
8
|
|
9
9
|
spec.summary = "SOULs is a Serverless Application Framework. SOULs has four strains, API, Worker, Console, Media, and can be used in combination according to the purpose. SOULs Backend GraphQL Ruby & Frontend Relay are Scalable and Easy to deploy to Google Cloud and Amazon Web Services"
|
10
10
|
spec.description = "SOULs is a Serverless Application Framework. SOULs has four strains, API, Worker, Console, Media, and can be used in combination according to the purpose. SOULs Backend GraphQL Ruby & Frontend Relay are Scalable and Easy to deploy to Google Cloud and Amazon Web Services"
|
11
|
-
spec.homepage = "https://souls
|
11
|
+
spec.homepage = "https://souls.elsoul.nl"
|
12
12
|
spec.license = "Apache-2.0"
|
13
13
|
spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0")
|
14
14
|
|
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.22.
|
4
|
+
version: 0.22.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- POPPIN-FUMI
|
@@ -71,120 +71,6 @@ files:
|
|
71
71
|
- config/souls.rb
|
72
72
|
- db/schema.rb
|
73
73
|
- exe/souls
|
74
|
-
- hoy/.env.sample
|
75
|
-
- hoy/.gitignore
|
76
|
-
- hoy/.irbrc
|
77
|
-
- hoy/.rspec
|
78
|
-
- hoy/.rubocop.yml
|
79
|
-
- hoy/.ruby-version
|
80
|
-
- hoy/CODE_OF_CONDUCT.md
|
81
|
-
- hoy/Dockerfile
|
82
|
-
- hoy/Dockerfile.dev
|
83
|
-
- hoy/Gemfile
|
84
|
-
- hoy/Gemfile.lock
|
85
|
-
- hoy/LICENSE.txt
|
86
|
-
- hoy/Procfile
|
87
|
-
- hoy/Procfile.dev
|
88
|
-
- hoy/README.md
|
89
|
-
- hoy/Rakefile
|
90
|
-
- hoy/app.rb
|
91
|
-
- hoy/app/graphql/mutations/.keep
|
92
|
-
- hoy/app/graphql/mutations/base/article/create_article.rb
|
93
|
-
- hoy/app/graphql/mutations/base/article/delete_article.rb
|
94
|
-
- hoy/app/graphql/mutations/base/article/destroy_delete_article.rb
|
95
|
-
- hoy/app/graphql/mutations/base/article/update_article.rb
|
96
|
-
- hoy/app/graphql/mutations/base/article_category/create_article_category.rb
|
97
|
-
- hoy/app/graphql/mutations/base/article_category/delete_article_category.rb
|
98
|
-
- hoy/app/graphql/mutations/base/article_category/destroy_delete_article_category.rb
|
99
|
-
- hoy/app/graphql/mutations/base/article_category/update_article_category.rb
|
100
|
-
- hoy/app/graphql/mutations/base/user/create_user.rb
|
101
|
-
- hoy/app/graphql/mutations/base/user/delete_user.rb
|
102
|
-
- hoy/app/graphql/mutations/base/user/destroy_delete_user.rb
|
103
|
-
- hoy/app/graphql/mutations/base/user/update_user.rb
|
104
|
-
- hoy/app/graphql/mutations/base_mutation.rb
|
105
|
-
- hoy/app/graphql/mutations/user_manager/add_user_role.rb
|
106
|
-
- hoy/app/graphql/mutations/user_manager/remove_user_role.rb
|
107
|
-
- hoy/app/graphql/mutations/user_manager/sign_in_user.rb
|
108
|
-
- hoy/app/graphql/queries/article.rb
|
109
|
-
- hoy/app/graphql/queries/article_categories.rb
|
110
|
-
- hoy/app/graphql/queries/article_category.rb
|
111
|
-
- hoy/app/graphql/queries/articles.rb
|
112
|
-
- hoy/app/graphql/queries/base_query.rb
|
113
|
-
- hoy/app/graphql/queries/me.rb
|
114
|
-
- hoy/app/graphql/queries/user.rb
|
115
|
-
- hoy/app/graphql/queries/users.rb
|
116
|
-
- hoy/app/graphql/resolvers/article_category_search.rb
|
117
|
-
- hoy/app/graphql/resolvers/article_search.rb
|
118
|
-
- hoy/app/graphql/resolvers/base.rb
|
119
|
-
- hoy/app/graphql/resolvers/user_search.rb
|
120
|
-
- hoy/app/graphql/souls_api_schema.rb
|
121
|
-
- hoy/app/graphql/types/.keep
|
122
|
-
- hoy/app/graphql/types/article_category_type.rb
|
123
|
-
- hoy/app/graphql/types/article_type.rb
|
124
|
-
- hoy/app/graphql/types/base/base_argument.rb
|
125
|
-
- hoy/app/graphql/types/base/base_enum.rb
|
126
|
-
- hoy/app/graphql/types/base/base_field.rb
|
127
|
-
- hoy/app/graphql/types/base/base_input_object.rb
|
128
|
-
- hoy/app/graphql/types/base/base_interface.rb
|
129
|
-
- hoy/app/graphql/types/base/base_object.rb
|
130
|
-
- hoy/app/graphql/types/base/base_scalar.rb
|
131
|
-
- hoy/app/graphql/types/base/base_union.rb
|
132
|
-
- hoy/app/graphql/types/base/mutation_type.rb
|
133
|
-
- hoy/app/graphql/types/base/query_type.rb
|
134
|
-
- hoy/app/graphql/types/connections/article_category_connection.rb
|
135
|
-
- hoy/app/graphql/types/connections/article_connection.rb
|
136
|
-
- hoy/app/graphql/types/connections/base_connection.rb
|
137
|
-
- hoy/app/graphql/types/connections/user_connection.rb
|
138
|
-
- hoy/app/graphql/types/edges/article_category_edge.rb
|
139
|
-
- hoy/app/graphql/types/edges/article_edge.rb
|
140
|
-
- hoy/app/graphql/types/edges/base_edge.rb
|
141
|
-
- hoy/app/graphql/types/edges/user_edge.rb
|
142
|
-
- hoy/app/graphql/types/user_type.rb
|
143
|
-
- hoy/app/models/article.rb
|
144
|
-
- hoy/app/models/article_category.rb
|
145
|
-
- hoy/app/models/user.rb
|
146
|
-
- hoy/app/policies/application_policy.rb
|
147
|
-
- hoy/app/policies/article_category_policy.rb
|
148
|
-
- hoy/app/policies/article_policy.rb
|
149
|
-
- hoy/app/policies/user_policy.rb
|
150
|
-
- hoy/app/utils/association_loader.rb
|
151
|
-
- hoy/app/utils/firebase_id_token.rb
|
152
|
-
- hoy/app/utils/json_web_token.rb
|
153
|
-
- hoy/app/utils/record_loader.rb
|
154
|
-
- hoy/app/utils/souls_helper.rb
|
155
|
-
- hoy/cloudbuild.yml
|
156
|
-
- hoy/config.ru
|
157
|
-
- hoy/config/database.yml
|
158
|
-
- hoy/config/souls.rb
|
159
|
-
- hoy/constants/areas.rb
|
160
|
-
- hoy/constants/column_name_ja.rb
|
161
|
-
- hoy/db/migrate/20200006095538_create_users.rb
|
162
|
-
- hoy/db/migrate/20200712180236_create_article_categories.rb
|
163
|
-
- hoy/db/migrate/20200714215521_create_articles.rb
|
164
|
-
- hoy/db/schema.rb
|
165
|
-
- hoy/db/seeds.rb
|
166
|
-
- hoy/github/workflows/delivery.yml
|
167
|
-
- hoy/log/.keep
|
168
|
-
- hoy/spec/factories/article_categories.rb
|
169
|
-
- hoy/spec/factories/articles.rb
|
170
|
-
- hoy/spec/factories/users.rb
|
171
|
-
- hoy/spec/models/article_category_spec.rb
|
172
|
-
- hoy/spec/models/article_spec.rb
|
173
|
-
- hoy/spec/models/user_spec.rb
|
174
|
-
- hoy/spec/mutations/base/article_category_spec.rb
|
175
|
-
- hoy/spec/mutations/base/article_spec.rb
|
176
|
-
- hoy/spec/mutations/base/user_spec.rb
|
177
|
-
- hoy/spec/policies/article_category_policy_spec.rb
|
178
|
-
- hoy/spec/policies/article_policy_spec.rb
|
179
|
-
- hoy/spec/policies/user_policy_spec.rb
|
180
|
-
- hoy/spec/queries/article_category_spec.rb
|
181
|
-
- hoy/spec/queries/article_spec.rb
|
182
|
-
- hoy/spec/queries/user_spec.rb
|
183
|
-
- hoy/spec/resolvers/article_category_search_spec.rb
|
184
|
-
- hoy/spec/resolvers/article_search_spec.rb
|
185
|
-
- hoy/spec/resolvers/user_search_spec.rb
|
186
|
-
- hoy/spec/spec_helper.rb
|
187
|
-
- hoy/tmp/.keep
|
188
74
|
- lib/souls.rb
|
189
75
|
- lib/souls/gcloud.rb
|
190
76
|
- lib/souls/gcloud/compute.rb
|
@@ -209,11 +95,11 @@ files:
|
|
209
95
|
- lib/souls/version.rb
|
210
96
|
- rbs/init.rbs
|
211
97
|
- souls.gemspec
|
212
|
-
homepage: https://souls
|
98
|
+
homepage: https://souls.elsoul.nl
|
213
99
|
licenses:
|
214
100
|
- Apache-2.0
|
215
101
|
metadata:
|
216
|
-
homepage_uri: https://souls
|
102
|
+
homepage_uri: https://souls.elsoul.nl
|
217
103
|
source_code_uri: https://github.com/elsoul/souls
|
218
104
|
changelog_uri: https://github.com/elsoul/souls
|
219
105
|
post_install_message:
|
data/hoy/.env.sample
DELETED
data/hoy/.gitignore
DELETED
@@ -1,32 +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
|
-
# Ignore all logfiles and tempfiles.
|
10
|
-
/log/*
|
11
|
-
/tmp/*
|
12
|
-
!/log/.keep
|
13
|
-
!/tmp/.keep
|
14
|
-
/config/initializers/souls.rb
|
15
|
-
/elsoul.key
|
16
|
-
# Ignore pidfiles, but keep the directory.
|
17
|
-
/tmp/pids/*
|
18
|
-
!/tmp/pids/
|
19
|
-
!/tmp/pids/.keep
|
20
|
-
/infra/config/*
|
21
|
-
.env
|
22
|
-
.envrc
|
23
|
-
.irb_history
|
24
|
-
/public/assets
|
25
|
-
.byebug_history
|
26
|
-
.DS_Store
|
27
|
-
# Ignore master key for decrypting credentials and more.
|
28
|
-
/config/master.key
|
29
|
-
/config/keyfile.json
|
30
|
-
/config/initializers/souls.rb
|
31
|
-
dump.rdb
|
32
|
-
/imgs/
|
data/hoy/.irbrc
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
require "./app"
|
data/hoy/.rspec
DELETED
data/hoy/.rubocop.yml
DELETED
@@ -1,132 +0,0 @@
|
|
1
|
-
require: rubocop-graphql
|
2
|
-
AllCops:
|
3
|
-
SuggestExtensions: false
|
4
|
-
EnabledByDefault: true
|
5
|
-
Exclude:
|
6
|
-
- "db/migrate/*.rb"
|
7
|
-
- "db/schema.rb"
|
8
|
-
- "spec/spec_helper.rb"
|
9
|
-
|
10
|
-
Style/Copyright:
|
11
|
-
Description: "Include a copyright notice in each file before any code."
|
12
|
-
Enabled: false
|
13
|
-
VersionAdded: "0.30"
|
14
|
-
Notice: '^Copyright (\(c\) )?2[0-9]{3} .+'
|
15
|
-
AutocorrectNotice: "Copyright 2021 by ELSOUL LABO B.V."
|
16
|
-
|
17
|
-
Style/TopLevelMethodDefinition:
|
18
|
-
Exclude:
|
19
|
-
- "db/seeds.rb"
|
20
|
-
- "spec/spec_helper.rb"
|
21
|
-
|
22
|
-
Style/IpAddresses:
|
23
|
-
Exclude:
|
24
|
-
- "config.ru"
|
25
|
-
- "Gemfile"
|
26
|
-
|
27
|
-
Style/HashSyntax:
|
28
|
-
EnforcedStyle: ruby19
|
29
|
-
Exclude:
|
30
|
-
- "**/*.rake"
|
31
|
-
- "Rakefile"
|
32
|
-
|
33
|
-
Style/Semicolon:
|
34
|
-
Exclude:
|
35
|
-
- "spec/**/*"
|
36
|
-
|
37
|
-
Style/StringLiterals:
|
38
|
-
EnforcedStyle: double_quotes
|
39
|
-
|
40
|
-
Style/ClassVars:
|
41
|
-
Exclude:
|
42
|
-
- "spec/spec_helper.rb"
|
43
|
-
Style/StringConcatenation:
|
44
|
-
Enabled: false
|
45
|
-
|
46
|
-
Style/Documentation:
|
47
|
-
Enabled: false
|
48
|
-
|
49
|
-
Style/DocumentationMethod:
|
50
|
-
Enabled: false
|
51
|
-
|
52
|
-
Style/FrozenStringLiteralComment:
|
53
|
-
Enabled: false
|
54
|
-
Style/Lambda:
|
55
|
-
EnforcedStyle: literal
|
56
|
-
|
57
|
-
Style/AsciiComments:
|
58
|
-
Enabled: false
|
59
|
-
|
60
|
-
Style/MissingElse:
|
61
|
-
Enabled: false
|
62
|
-
|
63
|
-
Style/StringHashKeys:
|
64
|
-
Exclude:
|
65
|
-
- "spec/**/*.rb"
|
66
|
-
|
67
|
-
Style/CollectionMethods:
|
68
|
-
Enabled: false
|
69
|
-
|
70
|
-
Style/FormatString:
|
71
|
-
Enabled: false
|
72
|
-
|
73
|
-
Style/ClassAndModuleChildren:
|
74
|
-
Enabled: false
|
75
|
-
|
76
|
-
Layout/ExtraSpacing:
|
77
|
-
Exclude:
|
78
|
-
- "db/migrate/*.rb"
|
79
|
-
|
80
|
-
Layout/LineEndStringConcatenationIndentation:
|
81
|
-
Enabled: false
|
82
|
-
|
83
|
-
GraphQL/ObjectDescription:
|
84
|
-
Enabled: false
|
85
|
-
|
86
|
-
GraphQL/FieldDescription:
|
87
|
-
Enabled: false
|
88
|
-
|
89
|
-
GraphQL/ArgumentDescription:
|
90
|
-
Enabled: false
|
91
|
-
|
92
|
-
GraphQL/ExtractInputType:
|
93
|
-
Enabled: false
|
94
|
-
|
95
|
-
GraphQL/ExtractType:
|
96
|
-
Enabled: false
|
97
|
-
|
98
|
-
GraphQL/ArgumentName:
|
99
|
-
Enabled: false
|
100
|
-
|
101
|
-
Lint/ConstantResolution:
|
102
|
-
Enabled: false
|
103
|
-
|
104
|
-
Lint/NumberConversion:
|
105
|
-
Enabled: false
|
106
|
-
|
107
|
-
Lint/MissingSuper:
|
108
|
-
Enabled: false
|
109
|
-
|
110
|
-
Metrics/AbcSize:
|
111
|
-
Enabled: false
|
112
|
-
|
113
|
-
Metrics/MethodLength:
|
114
|
-
Enabled: false
|
115
|
-
|
116
|
-
Metrics/BlockLength:
|
117
|
-
Enabled: false
|
118
|
-
|
119
|
-
Metrics/CyclomaticComplexity:
|
120
|
-
Enabled: false
|
121
|
-
|
122
|
-
Metrics/PerceivedComplexity:
|
123
|
-
Enabled: false
|
124
|
-
|
125
|
-
Naming/AccessorMethodName:
|
126
|
-
Enabled: false
|
127
|
-
|
128
|
-
Naming/PredicateName:
|
129
|
-
Enabled: false
|
130
|
-
|
131
|
-
Bundler/GemComment:
|
132
|
-
Enabled: false
|