souls 0.42.1 → 0.43.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: edd47698ca891813c0b301df870e9d89c186f6a5daf08e0b826030f9c39fac24
4
- data.tar.gz: 66d83ceba816974a327d2df21202b515e50f0bb53790c211d530566a5c07ee78
3
+ metadata.gz: 10295ad8cce6115a41b8d1dc02b3a4889df8bf4f798fdf19afec48020f9af866
4
+ data.tar.gz: 89f8bebc45e20ac5a0dac7130d4016afc4519f122addf443748495c5e4f1296a
5
5
  SHA512:
6
- metadata.gz: cb4b8d58f2dbd7ded286e3fbdb937d1d83eac27d76c16c33448a321b2f5ee2e2df366436ac7cde2a5b2b45ff8bf934b5bd4236c218412c666660921bde1d0691
7
- data.tar.gz: 8d917f318dceceddc9d153a8cd7e0753b458990095155620db6bd123a5b88bf0ffaebe428d53c8e148598965125cafd0d400ab072e2238111e7a964780070965
6
+ metadata.gz: 899007fe8edd25ee186331a788caec03728b28a678d99739881d4999d07ccff36651b8f484fac00015b824e652298ec038a963725df067d39f4ab8307f8b05d1
7
+ data.tar.gz: 7a2e289db5b166bd967aa21a0c38e4c4d33a06507509b52b317d4a2e115720bb702104541a4a0cf21587d1dbb62425fb52cd5feab31b6f52e372596403d8182b
@@ -7,39 +7,44 @@ module Souls
7
7
  end
8
8
 
9
9
  def update_conf(strain: "mother")
10
+ require("#{Souls.get_mother_path}/config/souls")
10
11
  workers = Souls.configuration.workers
11
- file_path = strain == "mother" ? "config/souls.rb" : "apps/api/config/souls.rb"
12
- new_file_path = "souls.rb"
13
- worker_switch = false
14
- File.open(new_file_path, "w") do |new_line|
15
- File.open(file_path, "r") do |f|
16
- f.each_line do |line|
17
- worker_switch = true if line.include?("config.workers")
18
- next if line.strip == "end"
12
+ Dir.chdir(Souls.get_mother_path.to_s) do
13
+ file_path = strain == "mother" ? "config/souls.rb" : "apps/api/config/souls.rb"
14
+ new_file_path = "souls.rb"
15
+ worker_switch = false
16
+ File.open(new_file_path, "w") do |new_line|
17
+ File.open(file_path, "r") do |f|
18
+ f.each_line do |line|
19
+ worker_switch = true if line.include?("config.workers")
20
+ next if line.strip == "end"
19
21
 
20
- new_line.write(line) unless worker_switch
22
+ new_line.write(line) unless worker_switch
21
23
 
22
- next unless worker_switch
24
+ next unless worker_switch
23
25
 
24
- new_line.write(" config.workers = [\n")
25
- workers.each do |worker|
26
- base_url = Souls::Gcloud::Run.get_endpoint(worker_name: worker[:name])
27
- endpoint = Souls.configuration.endpoint
28
- new_line.write(<<-TEXT)
29
- {
30
- name: "#{worker[:name]}",
31
- endpoint: "#{base_url.strip}/#{endpoint}",
32
- port: #{worker[:port]}
33
- },
34
- TEXT
26
+ new_line.write(" config.workers = [\n")
27
+ workers.each do |worker|
28
+ base_url = Souls::Gcloud::Run.get_endpoint(worker_name: worker[:name])
29
+ endpoint = Souls.configuration.endpoint
30
+ new_line.write(<<-TEXT)
31
+ {
32
+ name: "#{worker[:name]}",
33
+ endpoint: "#{base_url.strip}#{endpoint}",
34
+ port: #{worker[:port]}
35
+ },
36
+ TEXT
37
+ end
38
+ break
35
39
  end
36
- break
37
40
  end
41
+ new_line.write(<<~TEXT)
42
+ ]
43
+ end
44
+ TEXT
38
45
  end
39
- new_line.write(<<~TEXT)
40
- ]
41
- end
42
- TEXT
46
+ FileUtils.rm(file_path)
47
+ FileUtils.mv(new_file_path, file_path)
43
48
  end
44
49
  end
45
50
  end
data/lib/souls/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Souls
2
- VERSION = "0.42.1".freeze
2
+ VERSION = "0.43.0".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 0.21.1
1
+ 0.22.0
@@ -1 +1 @@
1
- 0.21.1
1
+ 0.22.0
@@ -13,37 +13,35 @@ module Souls
13
13
  private
14
14
 
15
15
  def mailgun_mailer(class_name: "mailer")
16
- file_dir = "./app/graphql/mutations/mailers/"
16
+ file_dir = "./app/graphql/mutations/"
17
17
  FileUtils.mkdir_p(file_dir) unless Dir.exist?(file_dir)
18
- file_path = "#{file_dir}#{class_name.singularize}_mailer.rb"
18
+ file_path = "#{file_dir}#{class_name.singularize}.rb"
19
19
  raise(StandardError, "Mailer already exist! #{file_path}") if File.exist?(file_path)
20
20
 
21
21
  File.open(file_path, "w") do |f|
22
22
  f.write(<<~TEXT)
23
23
  module Mutations
24
- module Mailers
25
- class #{class_name.camelize}Mailer < BaseMutation
26
- description "Mail を送信します。"
27
- field :response, String, null: false
24
+ class #{class_name.camelize} < BaseMutation
25
+ description "Mail を送信します。"
26
+ field :response, String, null: false
28
27
 
29
- def resolve
30
- # First, instantiate the Mailgun Client with your API key
31
- mg_client = ::Mailgun::Client.new("YOUR-API-KEY")
28
+ def resolve
29
+ # First, instantiate the Mailgun Client with your API key
30
+ mg_client = ::Mailgun::Client.new("YOUR-API-KEY")
32
31
 
33
- # Define your message parameters
34
- message_params = {
35
- from: "postmaster@YOUR-DOMAIN",
36
- to: "sending@to.mail.com",
37
- subject: "SOULs Mailer test!",
38
- text: "It is really easy to send a message!"
39
- }
32
+ # Define your message parameters
33
+ message_params = {
34
+ from: "postmaster@YOUR-DOMAIN",
35
+ to: "sending@to.mail.com",
36
+ subject: "SOULs Mailer test!",
37
+ text: "It is really easy to send a message!"
38
+ }
40
39
 
41
- # Send your message through the client
42
- mg_client.send_message("YOUR-MAILGUN-DOMAIN", message_params)
43
- { response: "Job done!" }
44
- rescue StandardError => e
45
- GraphQL::ExecutionError.new(e.to_s)
46
- end
40
+ # Send your message through the client
41
+ mg_client.send_message("YOUR-MAILGUN-DOMAIN", message_params)
42
+ { response: "Job done!" }
43
+ rescue StandardError => e
44
+ GraphQL::ExecutionError.new(e.to_s)
47
45
  end
48
46
  end
49
47
  TEXT
@@ -5,13 +5,13 @@ module Souls
5
5
  def mutation(class_name: "csv_export")
6
6
  file_dir = "./app/graphql/mutations/"
7
7
  FileUtils.mkdir_p(file_dir) unless Dir.exist?(file_dir)
8
- file_path = "#{file_dir}#{class_name.singularize}_job.rb"
8
+ file_path = "#{file_dir}#{class_name.singularize}.rb"
9
9
  raise(StandardError, "Mailer already exist! #{file_path}") if File.exist?(file_path)
10
10
 
11
11
  File.open(file_path, "w") do |f|
12
12
  f.write(<<~TEXT)
13
13
  module Mutations
14
- class #{class_name.camelize}Job < BaseMutation
14
+ class #{class_name.camelize} < BaseMutation
15
15
  description "Job Description"
16
16
  field :response, String, null: false
17
17
 
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.42.1
4
+ version: 0.43.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - POPPIN-FUMI