souls 0.60.0 → 0.60.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 70d25691a6e93376b3393efc7b95c0585995bf1611cce81b463a4db3f17497ca
4
- data.tar.gz: 0a1fe1bcc547ad5c41d85a5bf814157f171eb5aec5f8b1ce5f847bf509a6a6fd
3
+ metadata.gz: c9186282f4ac9cd03c645608b8f2449202f45072ee0564a0d7f6e62575185e1c
4
+ data.tar.gz: e842b2b0fb99831a3397c2c1b24abcdca1bcfaebf5032973dc45bc370e56e558
5
5
  SHA512:
6
- metadata.gz: 01fdbaa3e67ed0cfc1d4a78c56e55046f4e3bf3c413e7170eefb9b2ffb661cd86721140553e01807a9fe82db553003c7b108b90081ec9ca77b336e70c579577c
7
- data.tar.gz: 8d83326353d091c5655ff463ee1d7e72582d8a66be7c40567206811b3b4b1a4f25c2796ec3362fa01f7142b8651f60a60c76cd4852e6b4032f3cabc49102bf08
6
+ metadata.gz: 64eef9cbb586f5eabeb104904d710e5e3218b0a5ae85f53ec4aff9b316f1a0cef0e7c572ed3cce366742160ab8d3cbf94e8a58eede788239934419eb2c87b4d1
7
+ data.tar.gz: 77c4cd1d756bbe4a15bee11214ce5ed7fb4756ab00728de0730b21a84c67ee2ab7146bb8ff511fef8f86385195370052b2a714c1945ecdea88b7622271e00c0e
data/lib/souls/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Souls
2
- VERSION = "0.60.0".freeze
2
+ VERSION = "0.60.1".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 0.39.0
1
+ 0.39.1
@@ -1 +1 @@
1
- 0.39.0
1
+ 0.39.1
@@ -3,9 +3,10 @@ module Souls
3
3
  desc "job_rbs [CLASS_NAME]", "Generate SOULs Job Mutation RBS Template"
4
4
  def job_rbs(class_name)
5
5
  file_path = ""
6
+ worker_name = FileUtils.pwd.split("/").last
6
7
  Dir.chdir(Souls.get_mother_path.to_s) do
7
8
  singularized_class_name = class_name.underscore.singularize
8
- file_dir = "./sig/#{singularized_class_name}/app/graphql/mutations/"
9
+ file_dir = "./sig/#{worker_name}/app/graphql/mutations/"
9
10
  FileUtils.mkdir_p(file_dir) unless Dir.exist?(file_dir)
10
11
  file_path = "#{file_dir}#{singularized_class_name}.rbs"
11
12
  File.open(file_path, "w") do |f|
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.60.0
4
+ version: 0.60.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - POPPIN-FUMI