souls 0.22.4 → 0.22.8
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 +1 -0
- data/Gemfile.lock +7 -2
- data/exe/souls +27 -6
- data/hoy/.env.sample +7 -0
- data/hoy/.gitignore +32 -0
- data/hoy/.irbrc +1 -0
- data/hoy/.rspec +3 -0
- data/hoy/.rubocop.yml +132 -0
- data/hoy/.ruby-version +1 -0
- data/hoy/CODE_OF_CONDUCT.md +74 -0
- data/hoy/Dockerfile +16 -0
- data/hoy/Dockerfile.dev +17 -0
- data/hoy/Gemfile +50 -0
- data/hoy/Gemfile.lock +407 -0
- data/hoy/LICENSE.txt +67 -0
- data/hoy/Procfile +2 -0
- data/hoy/Procfile.dev +2 -0
- data/hoy/README.md +61 -0
- data/hoy/Rakefile +5 -0
- data/hoy/app.rb +116 -0
- data/hoy/app/graphql/mutations/.keep +0 -0
- data/hoy/app/graphql/mutations/base/article/create_article.rb +30 -0
- data/hoy/app/graphql/mutations/base/article/delete_article.rb +17 -0
- data/hoy/app/graphql/mutations/base/article/destroy_delete_article.rb +17 -0
- data/hoy/app/graphql/mutations/base/article/update_article.rb +30 -0
- data/hoy/app/graphql/mutations/base/article_category/create_article_category.rb +21 -0
- data/hoy/app/graphql/mutations/base/article_category/delete_article_category.rb +17 -0
- data/hoy/app/graphql/mutations/base/article_category/destroy_delete_article_category.rb +17 -0
- data/hoy/app/graphql/mutations/base/article_category/update_article_category.rb +21 -0
- data/hoy/app/graphql/mutations/base/user/create_user.rb +31 -0
- data/hoy/app/graphql/mutations/base/user/delete_user.rb +17 -0
- data/hoy/app/graphql/mutations/base/user/destroy_delete_user.rb +17 -0
- data/hoy/app/graphql/mutations/base/user/update_user.rb +31 -0
- data/hoy/app/graphql/mutations/base_mutation.rb +33 -0
- data/hoy/app/graphql/mutations/user_manager/add_user_role.rb +22 -0
- data/hoy/app/graphql/mutations/user_manager/remove_user_role.rb +22 -0
- data/hoy/app/graphql/mutations/user_manager/sign_in_user.rb +45 -0
- data/hoy/app/graphql/queries/article.rb +13 -0
- data/hoy/app/graphql/queries/article_categories.rb +11 -0
- data/hoy/app/graphql/queries/article_category.rb +13 -0
- data/hoy/app/graphql/queries/articles.rb +11 -0
- data/hoy/app/graphql/queries/base_query.rb +9 -0
- data/hoy/app/graphql/queries/me.rb +11 -0
- data/hoy/app/graphql/queries/user.rb +13 -0
- data/hoy/app/graphql/queries/users.rb +11 -0
- data/hoy/app/graphql/resolvers/article_category_search.rb +41 -0
- data/hoy/app/graphql/resolvers/article_search.rb +57 -0
- data/hoy/app/graphql/resolvers/base.rb +17 -0
- data/hoy/app/graphql/resolvers/user_search.rb +63 -0
- data/hoy/app/graphql/souls_api_schema.rb +43 -0
- data/hoy/app/graphql/types/.keep +0 -0
- data/hoy/app/graphql/types/article_category_type.rb +12 -0
- data/hoy/app/graphql/types/article_type.rb +30 -0
- data/hoy/app/graphql/types/base/base_argument.rb +4 -0
- data/hoy/app/graphql/types/base/base_enum.rb +4 -0
- data/hoy/app/graphql/types/base/base_field.rb +5 -0
- data/hoy/app/graphql/types/base/base_input_object.rb +5 -0
- data/hoy/app/graphql/types/base/base_interface.rb +7 -0
- data/hoy/app/graphql/types/base/base_object.rb +6 -0
- data/hoy/app/graphql/types/base/base_scalar.rb +4 -0
- data/hoy/app/graphql/types/base/base_union.rb +4 -0
- data/hoy/app/graphql/types/base/mutation_type.rb +16 -0
- data/hoy/app/graphql/types/base/query_type.rb +18 -0
- data/hoy/app/graphql/types/connections/article_category_connection.rb +3 -0
- data/hoy/app/graphql/types/connections/article_connection.rb +3 -0
- data/hoy/app/graphql/types/connections/base_connection.rb +14 -0
- data/hoy/app/graphql/types/connections/user_connection.rb +3 -0
- data/hoy/app/graphql/types/edges/article_category_edge.rb +5 -0
- data/hoy/app/graphql/types/edges/article_edge.rb +5 -0
- data/hoy/app/graphql/types/edges/base_edge.rb +4 -0
- data/hoy/app/graphql/types/edges/user_edge.rb +5 -0
- data/hoy/app/graphql/types/user_type.rb +22 -0
- data/hoy/app/models/article.rb +4 -0
- data/hoy/app/models/article_category.rb +3 -0
- data/hoy/app/models/user.rb +19 -0
- data/hoy/app/policies/application_policy.rb +40 -0
- data/hoy/app/policies/article_category_policy.rb +31 -0
- data/hoy/app/policies/article_policy.rb +31 -0
- data/hoy/app/policies/user_policy.rb +35 -0
- data/hoy/app/utils/association_loader.rb +50 -0
- data/hoy/app/utils/firebase_id_token.rb +4 -0
- data/hoy/app/utils/json_web_token.rb +13 -0
- data/hoy/app/utils/record_loader.rb +10 -0
- data/hoy/app/utils/souls_helper.rb +96 -0
- data/hoy/cloudbuild.yml +32 -0
- data/hoy/config.ru +17 -0
- data/hoy/config/database.yml +33 -0
- data/hoy/config/souls.rb +4 -0
- data/hoy/constants/areas.rb +71 -0
- data/hoy/constants/column_name_ja.rb +27 -0
- data/hoy/db/migrate/20200006095538_create_users.rb +30 -0
- data/hoy/db/migrate/20200712180236_create_article_categories.rb +12 -0
- data/hoy/db/migrate/20200714215521_create_articles.rb +22 -0
- data/hoy/db/schema.rb +78 -0
- data/hoy/db/seeds.rb +44 -0
- data/hoy/github/workflows/delivery.yml +81 -0
- data/hoy/log/.keep +0 -0
- data/hoy/spec/factories/article_categories.rb +9 -0
- data/hoy/spec/factories/articles.rb +17 -0
- data/hoy/spec/factories/users.rb +23 -0
- data/hoy/spec/models/article_category_spec.rb +7 -0
- data/hoy/spec/models/article_spec.rb +7 -0
- data/hoy/spec/models/user_spec.rb +7 -0
- data/hoy/spec/mutations/base/article_category_spec.rb +46 -0
- data/hoy/spec/mutations/base/article_spec.rb +70 -0
- data/hoy/spec/mutations/base/user_spec.rb +76 -0
- data/hoy/spec/policies/article_category_policy_spec.rb +25 -0
- data/hoy/spec/policies/article_policy_spec.rb +25 -0
- data/hoy/spec/policies/user_policy_spec.rb +5 -0
- data/hoy/spec/queries/article_category_spec.rb +39 -0
- data/hoy/spec/queries/article_spec.rb +53 -0
- data/hoy/spec/queries/user_spec.rb +59 -0
- data/hoy/spec/resolvers/article_category_search_spec.rb +54 -0
- data/hoy/spec/resolvers/article_search_spec.rb +68 -0
- data/hoy/spec/resolvers/user_search_spec.rb +74 -0
- data/hoy/spec/spec_helper.rb +110 -0
- data/hoy/tmp/.keep +0 -0
- data/lib/souls.rb +47 -9
- data/lib/souls/generate/mutation.rb +4 -6
- data/lib/souls/init.rb +16 -9
- data/lib/souls/version.rb +1 -1
- data/souls.gemspec +3 -1
- metadata +146 -4
data/hoy/tmp/.keep
ADDED
File without changes
|
data/lib/souls.rb
CHANGED
@@ -7,6 +7,7 @@ require "json"
|
|
7
7
|
require "fileutils"
|
8
8
|
require "net/http"
|
9
9
|
require "paint"
|
10
|
+
require "whirly"
|
10
11
|
|
11
12
|
module Souls
|
12
13
|
SOULS_METHODS = [
|
@@ -54,6 +55,23 @@ module Souls
|
|
54
55
|
system "gcloud scheduler jobs create http #{app}-awake --schedule '0,10,20,30,40,50 * * * *' --uri #{url} --http-method GET"
|
55
56
|
end
|
56
57
|
|
58
|
+
def show_wait_spinner(fps = 10)
|
59
|
+
chars = %w[| / - \\]
|
60
|
+
delay = 1.0 / fps
|
61
|
+
iter = 0
|
62
|
+
spinner = Thread.new do
|
63
|
+
while iter
|
64
|
+
print chars[(iter += 1) % chars.length]
|
65
|
+
sleep delay
|
66
|
+
print "\b"
|
67
|
+
end
|
68
|
+
end
|
69
|
+
yield.tap do
|
70
|
+
iter = false
|
71
|
+
spinner.join
|
72
|
+
end
|
73
|
+
end
|
74
|
+
|
57
75
|
def gemfile_latest_version
|
58
76
|
file_path = "./Gemfile"
|
59
77
|
updated_gems = []
|
@@ -94,21 +112,41 @@ module Souls
|
|
94
112
|
tmp_file = "./tmp/Gemfile"
|
95
113
|
new_gems = gemfile_latest_version
|
96
114
|
logs = []
|
97
|
-
|
115
|
+
message = Paint["\nAlready Up to date!", :green]
|
116
|
+
return "Already Up to date!" && puts(message) if new_gems[:gems].blank?
|
98
117
|
@i = 0
|
99
118
|
File.open(file_path, "r") do |f|
|
100
119
|
File.open(tmp_file, "w") do |new_line|
|
101
120
|
f.each_line do |line|
|
102
121
|
gem = line.gsub("gem ", "").gsub("\"", "").gsub("\n", "").gsub(" ", "").split(",")
|
103
122
|
if new_gems[:gems].include? gem[0]
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
123
|
+
old_ver = gem[1].split(".")
|
124
|
+
new_ver = new_gems[:updated_gem_versions][@i].split(".")
|
125
|
+
if old_ver[0] < new_ver[0]
|
126
|
+
logs << Paint % [
|
127
|
+
"#{gem[0]} v#{gem[1]} → %{red_text}",
|
128
|
+
:white,
|
129
|
+
{
|
130
|
+
red_text: ["v#{new_gems[:updated_gem_versions][@i]}", :red]
|
131
|
+
}
|
132
|
+
]
|
133
|
+
elsif old_ver[1] < new_ver[1]
|
134
|
+
logs << Paint % [
|
135
|
+
"#{gem[0]} v#{gem[1]} → v#{new_ver[0]}.%{yellow_text}",
|
136
|
+
:white,
|
137
|
+
{
|
138
|
+
yellow_text: ["#{new_ver[1]}.#{new_ver[2]}", :yellow]
|
139
|
+
}
|
140
|
+
]
|
141
|
+
elsif old_ver[2] < new_ver[2]
|
142
|
+
logs << Paint % [
|
143
|
+
"#{gem[0]} v#{gem[1]} → v#{new_ver[0]}.#{new_ver[1]}.%{green_text}",
|
144
|
+
:white,
|
145
|
+
{
|
146
|
+
green_text: [(new_ver[2]).to_s, :green]
|
147
|
+
}
|
148
|
+
]
|
149
|
+
end
|
112
150
|
new_line.write "#{new_gems[:lines][@i]}\n"
|
113
151
|
@i += 1
|
114
152
|
else
|
@@ -83,12 +83,10 @@ module Souls
|
|
83
83
|
file_path = "./app/graphql/mutations/base/#{class_name}/create_#{class_name}.rb"
|
84
84
|
File.open(file_path, "a") do |new_line|
|
85
85
|
new_line.write <<~EOS
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
{ error: #{class_name}.errors.full_messages }
|
91
|
-
end
|
86
|
+
data = ::#{class_name.camelize}.new args
|
87
|
+
raise(StandardError, data.errors.full_messages) unless data.save
|
88
|
+
|
89
|
+
{ #{class_name}_edge: { node: data } }
|
92
90
|
rescue StandardError => error
|
93
91
|
GraphQL::ExecutionError.new error
|
94
92
|
end
|
data/lib/souls/init.rb
CHANGED
@@ -29,8 +29,11 @@ module Souls
|
|
29
29
|
system "tar -zxvf ./#{version}.tar.gz"
|
30
30
|
system "mkdir #{app_name}"
|
31
31
|
folder = version.delete "v"
|
32
|
-
|
33
|
-
|
32
|
+
`cp -r #{repository_name}-#{folder}/. #{app_name}/`
|
33
|
+
`rm -rf #{version}.tar.gz && rm -rf #{repository_name}-#{folder}`
|
34
|
+
line = Paint["====================================", :yellow]
|
35
|
+
puts "\n"
|
36
|
+
puts line
|
34
37
|
txt = <<~TEXT
|
35
38
|
_____ ____ __ ____#{' '}
|
36
39
|
/ ___// __ \\/ / / / / _____
|
@@ -38,13 +41,17 @@ module Souls
|
|
38
41
|
___/ / /_/ / /_/ / /___(__ )#{' '}
|
39
42
|
/____/\\____/\\____/_____/____/#{' '}
|
40
43
|
TEXT
|
41
|
-
|
42
|
-
puts
|
43
|
-
puts
|
44
|
-
|
45
|
-
puts
|
46
|
-
|
47
|
-
puts
|
44
|
+
message = Paint[txt, :blue]
|
45
|
+
puts message
|
46
|
+
puts line
|
47
|
+
welcome = Paint["Welcome to SOULs!", :white]
|
48
|
+
puts welcome
|
49
|
+
souls_ver = Paint["SOULs Version: #{Souls::VERSION}", :white]
|
50
|
+
puts souls_ver
|
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]
|
53
|
+
puts cd
|
54
|
+
puts line
|
48
55
|
end
|
49
56
|
end
|
50
57
|
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://
|
11
|
+
spec.homepage = "https://souls-doc.el-soul.com"
|
12
12
|
spec.license = "Apache-2.0"
|
13
13
|
spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0")
|
14
14
|
|
@@ -24,4 +24,6 @@ Gem::Specification.new do |spec|
|
|
24
24
|
spec.bindir = "exe"
|
25
25
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
26
26
|
spec.require_paths = ["lib"]
|
27
|
+
spec.add_runtime_dependency "paint", "2.2.1"
|
28
|
+
spec.add_runtime_dependency "whirly", "0.3.0"
|
27
29
|
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.22.
|
4
|
+
version: 0.22.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- POPPIN-FUMI
|
@@ -11,7 +11,35 @@ autorequire:
|
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
13
|
date: 2021-07-14 00:00:00.000000000 Z
|
14
|
-
dependencies:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: paint
|
17
|
+
requirement: !ruby/object:Gem::Requirement
|
18
|
+
requirements:
|
19
|
+
- - '='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 2.2.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.2.1
|
29
|
+
- !ruby/object:Gem::Dependency
|
30
|
+
name: whirly
|
31
|
+
requirement: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - '='
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: 0.3.0
|
36
|
+
type: :runtime
|
37
|
+
prerelease: false
|
38
|
+
version_requirements: !ruby/object:Gem::Requirement
|
39
|
+
requirements:
|
40
|
+
- - '='
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
version: 0.3.0
|
15
43
|
description: SOULs is a Serverless Application Framework. SOULs has four strains,
|
16
44
|
API, Worker, Console, Media, and can be used in combination according to the purpose.
|
17
45
|
SOULs Backend GraphQL Ruby & Frontend Relay are Scalable and Easy to deploy to Google
|
@@ -43,6 +71,120 @@ files:
|
|
43
71
|
- config/souls.rb
|
44
72
|
- db/schema.rb
|
45
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
|
46
188
|
- lib/souls.rb
|
47
189
|
- lib/souls/gcloud.rb
|
48
190
|
- lib/souls/gcloud/compute.rb
|
@@ -67,11 +209,11 @@ files:
|
|
67
209
|
- lib/souls/version.rb
|
68
210
|
- rbs/init.rbs
|
69
211
|
- souls.gemspec
|
70
|
-
homepage: https://
|
212
|
+
homepage: https://souls-doc.el-soul.com
|
71
213
|
licenses:
|
72
214
|
- Apache-2.0
|
73
215
|
metadata:
|
74
|
-
homepage_uri: https://
|
216
|
+
homepage_uri: https://souls-doc.el-soul.com
|
75
217
|
source_code_uri: https://github.com/elsoul/souls
|
76
218
|
changelog_uri: https://github.com/elsoul/souls
|
77
219
|
post_install_message:
|