souls 1.0.6 → 1.1.0

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: a9924f5fe518e3f8f63cf84de52dd2f3a05b2c4eb20a6235fd8177e436b66127
4
- data.tar.gz: a673b122e0b8562b4e036cd3900c9967803283601ee6ce74573be8ae77fe827f
3
+ metadata.gz: 6687121e4a87a6a320ccc886a25e10dcd8a5e3e23e556dad80a8a1b6e82e6840
4
+ data.tar.gz: 91a95b811bf3c6f52b1d234e6866abc4e232ff01c2fa9a8b9b28b81418a4c656
5
5
  SHA512:
6
- metadata.gz: 12b7c722a08663e6606e86a146b92231daa28779fdf2b0a4f82d4eacffec61365995d04e8a4cefdd493c131d56553ca06a52630327a8e358d882890fa1a7dcd0
7
- data.tar.gz: a7638765026ee2a3353b9de9c81667af8f696c4547dc9f1b59cc7fda49ebd33da2fa2a445ed958eac062d879126533a54a355921be3b0e28b7b18ae20573364e
6
+ metadata.gz: c6529aeb9a1756cfb4b86adab9c51992c43535d336249c0d8da1264d55f7834ba1b84aec32d352e8d9efaf0ce0c159d72c3fe930c7e036b7ecaa45a41a841a4b
7
+ data.tar.gz: 216330750b5027fd7c92e22688e37e95fcfa4cdc49a7b098e2db92b6e3f6cb680bf25fb1839b7a75dbff30f90e735b98968dfb82763b21e9261346cb5a7fec99
data/README.md CHANGED
@@ -94,6 +94,12 @@ Check your GraphQL PlayGround
94
94
 
95
95
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `souls t` to run the tests. You can also run `souls c` for an interactive prompt that will allow you to experiment.
96
96
 
97
+ You need to add submodule
98
+
99
+ ```bash
100
+ git submodule add -f https://github.com/ruby/gem_rbs_collection.git vendor/rbs/gem_rbs_collection
101
+ ```
102
+
97
103
  To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org/gems/souls).
98
104
 
99
105
  ## Contributing
@@ -298,14 +298,14 @@ end
298
298
  _____ ____ __ ____#{' '}
299
299
  / ___// __ \\/ / / / / %{red1}
300
300
  \\__ \\/ / / / / / / / %{red2}
301
- ___/ / /_/ / /_/ / /___%{red3}#{' '}
301
+ __/ / /_/ / /_/ / /___%{red3}#{' '}
302
302
  /____/\\____/\\____/_____%{red4}#{' '}
303
303
  TEXT
304
304
  red1 = ["_____", :red]
305
305
  red2 = ["/ ___/", :red]
306
306
  red3 = ["(__ )", :red]
307
307
  red4 = ["/____/", :red]
308
- ms = Paint % [txt2, :cyan, { red1: red1, red2: red2, red3: red3, red4: red4 }]
308
+ ms = Paint % [txt2, :blue, { red1: red1, red2: red2, red3: red3, red4: red4 }]
309
309
  puts(ms)
310
310
  puts(line)
311
311
  welcome = Paint["SOULs Worker is Ready!", :white]
@@ -318,7 +318,7 @@ end
318
318
  $ cd apps/#{worker_name}
319
319
  $ souls sync model
320
320
  $ souls s
321
- Go To : http://localhost:3000
321
+ Go To : http://localhost:3000/playground
322
322
 
323
323
  Doc: https://souls.elsoul.nl
324
324
  TEXT
@@ -55,10 +55,11 @@ module Souls
55
55
  end
56
56
 
57
57
  def delete_subscription(topic_id: "mailer")
58
+ project_id = Souls.configuration.project_id
58
59
  pubsub = Google::Cloud::Pubsub.new(project_id: project_id)
59
60
  subscription_id = "#{topic_id}_sub"
60
61
  subscription = pubsub.subscription(subscription_id)
61
- subscription.detach
62
+ subscription.delete
62
63
  end
63
64
 
64
65
  def create_push_subscription(topic_id: "mailer")
data/lib/souls/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Souls
2
- VERSION = "1.0.6".freeze
2
+ VERSION = "1.1.0".freeze
3
3
  public_constant :VERSION
4
4
  end
@@ -1 +1 @@
1
- 1.0.6
1
+ 1.1.0
@@ -1 +1 @@
1
- 1.0.6
1
+ 1.1.0
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: 1.0.6
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - POPPIN-FUMI
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2021-10-13 00:00:00.000000000 Z
13
+ date: 2021-10-21 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activesupport