twitch-bot 5.0.1 → 5.0.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: c93a3e736df843858523b560468c2e8f5b485753d962048a53a1d31288dac8e7
4
- data.tar.gz: 0bcecc94bf291ba8f1cbdd95643fef3fcb63dec42a60b19b6b4714a99412e48a
3
+ metadata.gz: 8a9cd13d5b108b20673a4c971d882ca32538ed59cec9b53bbe96e810c114f72c
4
+ data.tar.gz: 10bf6db842e60d29b8e55ecb907110b31d01d19e625729caedb446ed7f947c83
5
5
  SHA512:
6
- metadata.gz: 1dd1afaf1758e6e284286c574d6e1c97c7173431ecec73570394193e174afd8ed2216bf6f22cec76f4ac0c0b379b4fdcf0ef93d275664870b8247f0da2f880a7
7
- data.tar.gz: 2457c8f76af99c2b0293ffce6bc6269df1cc0c07f9a3aa54fbfb210e28c791f34e42eee7eeb89da00d523da6b9853454c8ad0b561d182667e80280f962253f76
6
+ metadata.gz: 9f8b1e3f3c9685a624845f45c9da18e81081f2d471ef917f280f715741345c61dce68b9af4941e7d808a950af85027afc651da384adbffa291ea39c5a763611c
7
+ data.tar.gz: 8ec7e264de9418e546ee1f885dc196f7d35541fe0b93da957928937f4030f30f5fad3534d512c7afffb4f63479a6067b4a50ce0e7302ef0e1e91efa2e928be75
@@ -27,27 +27,3 @@ jobs:
27
27
  bundle exec rake test
28
28
  env:
29
29
  REDIS_URL: 'redis://redis:6379'
30
-
31
- release:
32
- if: startsWith(github.ref, 'refs/tags/v')
33
- needs: test
34
- runs-on: ubuntu-latest
35
- steps:
36
- - uses: actions/checkout@v2
37
- - name: Setup
38
- uses: actions/setup-ruby@v1
39
- with:
40
- ruby-version: 2.6.x
41
- - name: Bundle
42
- run: |
43
- gem install bundler
44
- bundle install --jobs 4 --retry 3
45
- - name: Publish to RubyGems
46
- run: |
47
- mkdir -p $HOME/.gem
48
- touch $HOME/.gem/credentials
49
- chmod 0600 $HOME/.gem/credentials
50
- printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
51
- rake release
52
- env:
53
- GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_AUTH_TOKEN}}
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog Twitch::Bot
2
2
 
3
+ ## v5.0.5
4
+
5
+ - [FIX] Catch missing channel object.
6
+
7
+ ## v5.0.4
8
+
9
+ - [FIX] Handle `nil` values from Redis.
10
+
11
+ ## v5.0.3
12
+
13
+ - [FIX] Remove CI release stage broken by Rubygems OTP.
14
+
15
+ ## v5.0.2
16
+
17
+ - [FIX] `PART` command caused a crash when not in a channel.
18
+
3
19
  ## v5.0.1
4
20
 
5
21
  - [FIX] Environment variable `REDIS_URL` now has precedence over configuration
@@ -9,6 +9,7 @@ module Twitch
9
9
  class Irc
10
10
  def initialize(client:)
11
11
  @client = client
12
+ @channel = nil
12
13
 
13
14
  open_socket
14
15
  end
@@ -29,7 +30,7 @@ module Twitch
29
30
  end
30
31
 
31
32
  def send_message(text)
32
- privmsg = "PRIVMSG ##{channel.name} :#{text}"
33
+ privmsg = "PRIVMSG ##{@channel.name} :#{text}"
33
34
  send_data(privmsg)
34
35
  end
35
36
 
@@ -37,19 +38,19 @@ module Twitch
37
38
  send_data_to_socket(data)
38
39
  end
39
40
 
40
- def join_channel(channel)
41
- @channel = channel
42
- send_data "JOIN ##{channel.name}"
41
+ def join_channel(channel_object)
42
+ @channel = channel_object
43
+ send_data "JOIN ##{@channel.name}"
43
44
  end
44
45
 
45
46
  def part_channel
46
- send_data "PART ##{channel.name}"
47
+ send_data "PART ##{@channel.name}" if @channel
47
48
  @channel = nil
48
49
  end
49
50
 
50
51
  private
51
52
 
52
- attr_reader :socket, :client, :channel
53
+ attr_reader :socket, :client
53
54
 
54
55
  def open_socket
55
56
  @socket = ::TCPSocket.new(
@@ -181,7 +181,7 @@ module Twitch
181
181
  end
182
182
 
183
183
  def max_messages_count
184
- if channel.moderators.include?(config.setting("botname"))
184
+ if channel&.moderators.include?(config.setting("botname"))
185
185
  MODERATOR_MESSAGES_COUNT
186
186
  else
187
187
  USER_MESSAGES_COUNT
@@ -19,7 +19,7 @@ module Twitch
19
19
 
20
20
  def retrieve(key)
21
21
  value = redis.get(key)
22
- JSON.parse(value)
22
+ value.nil? ? nil : JSON.parse(value)
23
23
  end
24
24
 
25
25
  private
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Twitch
4
4
  module Bot
5
- VERSION = "5.0.1"
5
+ VERSION = "5.0.5"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twitch-bot
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.1
4
+ version: 5.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jochen Lillich