souls 0.66.2 → 0.66.3

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: fea2c7809dbc16cba399be01133563e1770c6920edd33f366fc28628fbdde57d
4
- data.tar.gz: 292b21da9bc2a3314410ddc29c72f22447b6a3f172c94e81ee48ab7a07531c05
3
+ metadata.gz: ebe34aa1db4723fa7b163777eb253fcb9428aa3840bbc331d0f6afda796c5cf6
4
+ data.tar.gz: 91e80663564657018c3f1ead3e6f040e384eb1e15e200518d0f8c8e3bee6ba5b
5
5
  SHA512:
6
- metadata.gz: 9a5d3d8cdbe12fb9009d5cd8cbb5ba4f7627d6fb478de244aabd69ca1ac1bc72646fd47c217ac310452da561fce9d365c8778414de9bf17a7e26e1123b62461c
7
- data.tar.gz: 8f24438d97d11a5e8cd70f5fa78c010bab2c4c07aa2feea268356f15d61d565df4278f29965e5381f643de8c6cdcf1965adb172a5187dbc9bc9c9622d1db8d42
6
+ metadata.gz: e26a2fb84d6852c98b534b36a16e030b350673f26abec817d5a4250ea658120c003e45b2e2fc24a4bb4b5c5e0af9c615e17e0f8ff29dcf39dc4efd8ef07079a3
7
+ data.tar.gz: 50f2032f270ee0203bd418f1b044862a5d0e6c37e9d4312d46435cb97a3796fe729a0a9a7898949835d93d1aff5606253211c32a397a7d3af96a720e292f4ec4
@@ -21,6 +21,7 @@ module Souls
21
21
  souls_config_init(worker_name: options[:name])
22
22
  steepfile(worker_name: options[:name])
23
23
  souls_helper_rbs(worker_name: options[:name])
24
+ system("cd apps/#{options[:name]} && bundle")
24
25
  souls_worker_credit(worker_name: options[:name])
25
26
  end
26
27
  true
@@ -313,7 +314,6 @@ end
313
314
  endroll = <<~TEXT
314
315
  Easy to Run
315
316
  $ cd apps/#{worker_name}
316
- $ bundle
317
317
  $ souls sync model
318
318
  $ souls s
319
319
  Go To : http://localhost:3000
@@ -10,12 +10,12 @@ module Souls
10
10
 
11
11
  File.open(file_path, "w") do |f|
12
12
  f.write(<<~TEXT)
13
- RSpec.describe("#{class_name.singularize.camelize}") do
14
- describe "Define #{class_name.singularize.camelize}" do
13
+ RSpec.describe("#{singularized_class_name.camelize}") do
14
+ describe "Define #{singularized_class_name.camelize}" do
15
15
 
16
16
  let(:mutation) do
17
17
  %(mutation {
18
- #{class_name.singularize.camelize(:lower)}(input: {}) {
18
+ #{singularized_class_name.camelize(:lower)}(input: {}) {
19
19
  response
20
20
  }
21
21
  }
@@ -28,7 +28,7 @@ module Souls
28
28
 
29
29
  it "return StockSheet Data" do
30
30
  begin
31
- a1 = result.dig("data", "#{options[:mutation].singularize.camelize(:lower)}", "response")
31
+ a1 = result.dig("data", "#{singularized_class_name.camelize(:lower)}", "response")
32
32
  raise unless a1.present?
33
33
  rescue StandardError
34
34
  raise(StandardError, result)
data/lib/souls/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Souls
2
- VERSION = "0.66.2".freeze
2
+ VERSION = "0.66.3".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 0.45.2
1
+ 0.45.3
@@ -1 +1 @@
1
- 0.45.2
1
+ 0.45.3
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.66.2
4
+ version: 0.66.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - POPPIN-FUMI