souls 0.22.8 → 0.22.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (123) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/README.md +1 -1
  4. data/exe/souls +7 -8
  5. data/lib/souls.rb +5 -1
  6. data/lib/souls/init.rb +1 -1
  7. data/lib/souls/version.rb +1 -1
  8. data/souls.gemspec +1 -1
  9. metadata +3 -117
  10. data/hoy/.env.sample +0 -7
  11. data/hoy/.gitignore +0 -32
  12. data/hoy/.irbrc +0 -1
  13. data/hoy/.rspec +0 -3
  14. data/hoy/.rubocop.yml +0 -132
  15. data/hoy/.ruby-version +0 -1
  16. data/hoy/CODE_OF_CONDUCT.md +0 -74
  17. data/hoy/Dockerfile +0 -16
  18. data/hoy/Dockerfile.dev +0 -17
  19. data/hoy/Gemfile +0 -50
  20. data/hoy/Gemfile.lock +0 -407
  21. data/hoy/LICENSE.txt +0 -67
  22. data/hoy/Procfile +0 -2
  23. data/hoy/Procfile.dev +0 -2
  24. data/hoy/README.md +0 -61
  25. data/hoy/Rakefile +0 -5
  26. data/hoy/app.rb +0 -116
  27. data/hoy/app/graphql/mutations/.keep +0 -0
  28. data/hoy/app/graphql/mutations/base/article/create_article.rb +0 -30
  29. data/hoy/app/graphql/mutations/base/article/delete_article.rb +0 -17
  30. data/hoy/app/graphql/mutations/base/article/destroy_delete_article.rb +0 -17
  31. data/hoy/app/graphql/mutations/base/article/update_article.rb +0 -30
  32. data/hoy/app/graphql/mutations/base/article_category/create_article_category.rb +0 -21
  33. data/hoy/app/graphql/mutations/base/article_category/delete_article_category.rb +0 -17
  34. data/hoy/app/graphql/mutations/base/article_category/destroy_delete_article_category.rb +0 -17
  35. data/hoy/app/graphql/mutations/base/article_category/update_article_category.rb +0 -21
  36. data/hoy/app/graphql/mutations/base/user/create_user.rb +0 -31
  37. data/hoy/app/graphql/mutations/base/user/delete_user.rb +0 -17
  38. data/hoy/app/graphql/mutations/base/user/destroy_delete_user.rb +0 -17
  39. data/hoy/app/graphql/mutations/base/user/update_user.rb +0 -31
  40. data/hoy/app/graphql/mutations/base_mutation.rb +0 -33
  41. data/hoy/app/graphql/mutations/user_manager/add_user_role.rb +0 -22
  42. data/hoy/app/graphql/mutations/user_manager/remove_user_role.rb +0 -22
  43. data/hoy/app/graphql/mutations/user_manager/sign_in_user.rb +0 -45
  44. data/hoy/app/graphql/queries/article.rb +0 -13
  45. data/hoy/app/graphql/queries/article_categories.rb +0 -11
  46. data/hoy/app/graphql/queries/article_category.rb +0 -13
  47. data/hoy/app/graphql/queries/articles.rb +0 -11
  48. data/hoy/app/graphql/queries/base_query.rb +0 -9
  49. data/hoy/app/graphql/queries/me.rb +0 -11
  50. data/hoy/app/graphql/queries/user.rb +0 -13
  51. data/hoy/app/graphql/queries/users.rb +0 -11
  52. data/hoy/app/graphql/resolvers/article_category_search.rb +0 -41
  53. data/hoy/app/graphql/resolvers/article_search.rb +0 -57
  54. data/hoy/app/graphql/resolvers/base.rb +0 -17
  55. data/hoy/app/graphql/resolvers/user_search.rb +0 -63
  56. data/hoy/app/graphql/souls_api_schema.rb +0 -43
  57. data/hoy/app/graphql/types/.keep +0 -0
  58. data/hoy/app/graphql/types/article_category_type.rb +0 -12
  59. data/hoy/app/graphql/types/article_type.rb +0 -30
  60. data/hoy/app/graphql/types/base/base_argument.rb +0 -4
  61. data/hoy/app/graphql/types/base/base_enum.rb +0 -4
  62. data/hoy/app/graphql/types/base/base_field.rb +0 -5
  63. data/hoy/app/graphql/types/base/base_input_object.rb +0 -5
  64. data/hoy/app/graphql/types/base/base_interface.rb +0 -7
  65. data/hoy/app/graphql/types/base/base_object.rb +0 -6
  66. data/hoy/app/graphql/types/base/base_scalar.rb +0 -4
  67. data/hoy/app/graphql/types/base/base_union.rb +0 -4
  68. data/hoy/app/graphql/types/base/mutation_type.rb +0 -16
  69. data/hoy/app/graphql/types/base/query_type.rb +0 -18
  70. data/hoy/app/graphql/types/connections/article_category_connection.rb +0 -3
  71. data/hoy/app/graphql/types/connections/article_connection.rb +0 -3
  72. data/hoy/app/graphql/types/connections/base_connection.rb +0 -14
  73. data/hoy/app/graphql/types/connections/user_connection.rb +0 -3
  74. data/hoy/app/graphql/types/edges/article_category_edge.rb +0 -5
  75. data/hoy/app/graphql/types/edges/article_edge.rb +0 -5
  76. data/hoy/app/graphql/types/edges/base_edge.rb +0 -4
  77. data/hoy/app/graphql/types/edges/user_edge.rb +0 -5
  78. data/hoy/app/graphql/types/user_type.rb +0 -22
  79. data/hoy/app/models/article.rb +0 -4
  80. data/hoy/app/models/article_category.rb +0 -3
  81. data/hoy/app/models/user.rb +0 -19
  82. data/hoy/app/policies/application_policy.rb +0 -40
  83. data/hoy/app/policies/article_category_policy.rb +0 -31
  84. data/hoy/app/policies/article_policy.rb +0 -31
  85. data/hoy/app/policies/user_policy.rb +0 -35
  86. data/hoy/app/utils/association_loader.rb +0 -50
  87. data/hoy/app/utils/firebase_id_token.rb +0 -4
  88. data/hoy/app/utils/json_web_token.rb +0 -13
  89. data/hoy/app/utils/record_loader.rb +0 -10
  90. data/hoy/app/utils/souls_helper.rb +0 -96
  91. data/hoy/cloudbuild.yml +0 -32
  92. data/hoy/config.ru +0 -17
  93. data/hoy/config/database.yml +0 -33
  94. data/hoy/config/souls.rb +0 -4
  95. data/hoy/constants/areas.rb +0 -71
  96. data/hoy/constants/column_name_ja.rb +0 -27
  97. data/hoy/db/migrate/20200006095538_create_users.rb +0 -30
  98. data/hoy/db/migrate/20200712180236_create_article_categories.rb +0 -12
  99. data/hoy/db/migrate/20200714215521_create_articles.rb +0 -22
  100. data/hoy/db/schema.rb +0 -78
  101. data/hoy/db/seeds.rb +0 -44
  102. data/hoy/github/workflows/delivery.yml +0 -81
  103. data/hoy/log/.keep +0 -0
  104. data/hoy/spec/factories/article_categories.rb +0 -9
  105. data/hoy/spec/factories/articles.rb +0 -17
  106. data/hoy/spec/factories/users.rb +0 -23
  107. data/hoy/spec/models/article_category_spec.rb +0 -7
  108. data/hoy/spec/models/article_spec.rb +0 -7
  109. data/hoy/spec/models/user_spec.rb +0 -7
  110. data/hoy/spec/mutations/base/article_category_spec.rb +0 -46
  111. data/hoy/spec/mutations/base/article_spec.rb +0 -70
  112. data/hoy/spec/mutations/base/user_spec.rb +0 -76
  113. data/hoy/spec/policies/article_category_policy_spec.rb +0 -25
  114. data/hoy/spec/policies/article_policy_spec.rb +0 -25
  115. data/hoy/spec/policies/user_policy_spec.rb +0 -5
  116. data/hoy/spec/queries/article_category_spec.rb +0 -39
  117. data/hoy/spec/queries/article_spec.rb +0 -53
  118. data/hoy/spec/queries/user_spec.rb +0 -59
  119. data/hoy/spec/resolvers/article_category_search_spec.rb +0 -54
  120. data/hoy/spec/resolvers/article_search_spec.rb +0 -68
  121. data/hoy/spec/resolvers/user_search_spec.rb +0 -74
  122. data/hoy/spec/spec_helper.rb +0 -110
  123. data/hoy/tmp/.keep +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f6517df7f62ab9f2d60547d4c969966866f2259df1d6d9e8c60894607706a126
4
- data.tar.gz: f7688cebc8f9776cfd414bc251d13687e5a48619486a880ffb9322c6e6ee1ab1
3
+ metadata.gz: d4743791a22f8b54e87e3a64e86d1e9c1788ee935fddc3613d8d8ae199d88094
4
+ data.tar.gz: 4efd188ab4db345f57cc8e74480c9bfd95ef120122f55311644cc036166a370a
5
5
  SHA512:
6
- metadata.gz: b9c12b8d22cbcba8c2b830e4745f7d63d3d24a9e74fcf1e8520152c2dc9b5769bfaee2140a867d63a4e9ea5645920f2bd7536f133389371b89edc005a41d9989
7
- data.tar.gz: 1115378bab9c486a6a0a31510bec9231a7f72ee49afe00cc63bd0dcc62b1ec3c20015ee38a3ce41f9dcc6891e036e307ce235aa6cff8ab9429aecc464ff62b3f
6
+ metadata.gz: 71938d1f307ff795e6bce9acb49825bf76d494b8677433b1b4fb84f8ccdbf9b59c397405c41ebd529b5a121cffd9ae14c56b35c304ebf737544e62e55678fd79
7
+ data.tar.gz: a24bc9987ab8bdc55d170d512ef66472184ab5d69f147af49331c3f6a67055b6cc95c67ccee965ffe011177fd5bb48f2fb8acfefc589a3ec3898290a57621ac9
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- souls (0.22.7)
4
+ souls (0.22.8)
5
5
  paint (= 2.2.1)
6
6
  whirly (= 0.3.0)
7
7
 
data/README.md CHANGED
@@ -75,7 +75,7 @@ And Create Your APP
75
75
 
76
76
  ## SOULs Document
77
77
 
78
- - [SOULs Document](https://souls-doc.el-soul.com/)
78
+ - [SOULs Document](https://souls.elsoul.nl/)
79
79
 
80
80
 
81
81
 
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 \n `souls new 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", color: :false, interval: 1000, stop: "🎉" do
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 error.backtrace
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 << "#{gem[0]} v#{gem[1]} → v#{data["version"]}"
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-doc.el-soul.com", :white]
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
@@ -1,3 +1,3 @@
1
1
  module Souls
2
- VERSION = "0.22.8"
2
+ VERSION = "0.22.9"
3
3
  end
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-doc.el-soul.com"
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.8
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-doc.el-soul.com
98
+ homepage: https://souls.elsoul.nl
213
99
  licenses:
214
100
  - Apache-2.0
215
101
  metadata:
216
- homepage_uri: https://souls-doc.el-soul.com
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
@@ -1,7 +0,0 @@
1
- DB_HOST=xxxxx
2
- DB_USER=xxxxx
3
- DB_PW=xxxxx
4
- SLACK=xxxxx
5
- TZ="Asia/Tokyo"
6
- SECRET_KEY_BASE=xxxxxxxxxxxxxx
7
- GCLOUDSQL_INSTANCE=xxxxxxxxx
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
@@ -1,3 +0,0 @@
1
- --format documentation
2
- --color
3
- --require spec_helper
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