souls 1.10.4 → 1.10.5
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 616d59bdb706c95e5de0bcec5be98e1cc38056792cfa4dac6300682098349b00
|
4
|
+
data.tar.gz: d7b99caf0541cf9ab2c18e3156919f45868e22441c39f46010f4133bfa8aa508
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3fd43cb4be583133cfe917ff72fb6e0c8f0c9beb813abecf3dd4bdc8ee8ad9a6b0c5eb2022fc6f232edea19f48f43877594f619739092c16f4a947cfd1b56daa
|
7
|
+
data.tar.gz: 6ec51693fb7737dbebc445a2ab954a925ad152b910183313c1795e57127d5f08febfc47bb7d7cd5f84a8c37c914d8589b81aa6a0e16885bc5add73bad12d0932
|
@@ -6,10 +6,9 @@ module Souls
|
|
6
6
|
singularized_class_name = class_name.underscore.singularize
|
7
7
|
file_dir = "./app/graphql/mutations/managers/#{singularized_class_name}_manager"
|
8
8
|
file_path = "#{file_dir}/#{options[:mutation]}.rb"
|
9
|
-
puts(file_path)
|
10
9
|
|
11
10
|
FileUtils.rm_f(file_path)
|
12
|
-
puts(Paint % ["
|
11
|
+
puts(Paint % ["Deleted file! : %{white_text}", :yellow, { white_text: [file_path.to_s, :white] }])
|
13
12
|
Souls::Delete.new.invoke(:manager_rbs, [singularized_class_name], { mutation: options[:mutation] })
|
14
13
|
Souls::Delete.new.invoke(:rspec_manager, [singularized_class_name], { mutation: options[:mutation] })
|
15
14
|
file_path
|
@@ -4,9 +4,9 @@ module Souls
|
|
4
4
|
method_option :mutation, aliases: "--mutation", required: true, desc: "Mutation File Name"
|
5
5
|
def rspec_manager(class_name)
|
6
6
|
singularized_class_name = class_name.underscore.singularize
|
7
|
-
file_dir = "./spec/managers
|
7
|
+
file_dir = "./spec/managers/#{singularized_class_name}_manager"
|
8
8
|
FileUtils.mkdir_p(file_dir) unless Dir.exist?(file_dir)
|
9
|
-
file_path = "
|
9
|
+
file_path = "#{file_dir}/#{options[:mutation]}_spec.rb"
|
10
10
|
return "RspecManager already exist! #{file_path}" if File.exist?(file_path)
|
11
11
|
|
12
12
|
File.open(file_path, "w") do |f|
|
data/lib/souls/version.rb
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.10.
|
1
|
+
1.10.5
|
@@ -1 +1 @@
|
|
1
|
-
1.10.
|
1
|
+
1.10.5
|