souls 0.15.7 → 0.15.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: abe6a8a19db79936b013516a4d13714d8b5f40dbd1936b3348c84954b3464f46
4
- data.tar.gz: 79b82ca41a79fdfcd56794b3bb329a905abfdac0fcecc5075973a53700b5a9c9
3
+ metadata.gz: 438b9ee41acbb2e5830f28093be1d7a92bb6afcf3714cbfe23bf400e124ce396
4
+ data.tar.gz: fc449a96bd06555a98588c3e7bb0c20c7fc345d0f1e52df6851328dd56125c2a
5
5
  SHA512:
6
- metadata.gz: 53e0e8479c8e0d935f55a5119ebc1af3f61b0ac40476dd36e291196c69bc025822eaa37213ef6ecdfcba182c163ecb3d1e2b76e1c6af497b3823c0f3e77b8115
7
- data.tar.gz: b6216fca804c81d140712a9ee7c01c926d034a10c5d84d3990e83491bb0fbea2d8ab7896465b4267bfa4edf4f2330b109376d6a6125e6a749ef660c419ebb3a6
6
+ metadata.gz: b35950640af120716478c6b558e12f4c635161a25642bee2956a97616168c69837320b1d3d0dd59b9421b3238aa8f8e6fdd2cfd63a4d2befa98eb1900aea5b96
7
+ data.tar.gz: ca59f3e1c0bc92a76c6448b9f411f5e160eafa3bec9e210e50a8ce7db489dc541af4cd95e67cadbc4214010a9bffe7f0c50dbcf7040ab5d91f524a1ef1c0b37b
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- souls (0.15.6)
4
+ souls (0.15.7)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -79,6 +79,19 @@ And Create Your APP
79
79
  ## Usage - 1. GraphQL API
80
80
 
81
81
  ```bash
82
+ # Ruby version (using rbenv)
83
+ $ ruby -v
84
+ ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [x86_64-darwin20]
85
+
86
+ # Install xcode
87
+ $ xcode-select --install
88
+
89
+ # Install PostgreSQL (Mac env)
90
+ $ brew install postgresql
91
+
92
+ # Install redis
93
+ $ brew install redis
94
+
82
95
  # Version Check
83
96
  $ souls -v
84
97
 
@@ -99,6 +99,7 @@ module Souls
99
99
 
100
100
  def rspec_resolver_head class_name: "souls"
101
101
  file_path = "./spec/resolvers/#{class_name.singularize}_search_spec.rb"
102
+ puts file_path
102
103
  File.open(file_path, "w") do |f|
103
104
  f.write <<~EOS
104
105
  RSpec.describe \"#{class_name.camelize}Search Resolver テスト\" do
data/lib/souls/init.rb CHANGED
@@ -1283,7 +1283,7 @@ module Souls
1283
1283
  puts "\n============== Resolver =======================\n\n"
1284
1284
  paths.each do |class_name|
1285
1285
  class_name.each do |path|
1286
- path[:resovler].each { |line| puts line }
1286
+ path[:resolver].each { |line| puts line }
1287
1287
  end
1288
1288
  end
1289
1289
  puts "\n============== NodeType =======================\n\n"
data/lib/souls/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Souls
2
- VERSION = "0.15.7"
2
+ VERSION = "0.15.8"
3
3
  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.15.7
4
+ version: 0.15.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - POPPIN-FUMI