ruboty 1.3.0 → 1.3.1

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
- SHA1:
3
- metadata.gz: e10e8aca745957633ec85637a57ea122f1153095
4
- data.tar.gz: 2475d3d2cbb95728760937683203e4277e4d46ce
2
+ SHA256:
3
+ metadata.gz: ec54bcc0403dac7136b366e3a6e2ab709c763aef91b459ae1f2f2ecc2e3324dc
4
+ data.tar.gz: cc0cb0a79dbe93896e854ba66971aed2e5b001010263561835d46a5550d88933
5
5
  SHA512:
6
- metadata.gz: bbd1d4b688c3af3237e8972f6f301bd8c8aaaab23f635aa4656173c896cfbee5db828b87399a8fc777b55ed8ced5ddfb75a6c0e4ecc613b171e8ec48f82e3279
7
- data.tar.gz: ee168a5e6a60c2f0e1268eff17a16a22b662f663be4760ed37e4a1e0c5a608446663815eeb1b706703326aa4bb166c80375675b871eba89a0180bf176ca66fa8
6
+ metadata.gz: 347f987239002a95e7dc94c19358cd187aafbfb07a59dba0e6c0f04f989752041f01b4fa9891e3e2e63827339caa93ff33ec4776d32d61047a325c9a2c93c2cf
7
+ data.tar.gz: 646abd7e05b42051e27201a818c9e80b0c2a0285daf35d11923adfc94da08f0a3fc4c2a69ad06e02a28ac88ed4dd9f30380c91ac7661af2cec4b07de4f78fbec
@@ -1,3 +1,7 @@
1
+ ## 1.3.1
2
+
3
+ - Support unicode spaces like U+00a0 (thx @sugi)
4
+
1
5
  ## 1.3.0
2
6
 
3
7
  - Add --daemonize option
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Ruboty
2
2
 
3
- [[![Gem](https://img.shields.io/gem/v/formatador.svg)]()](https://rubygems.org/gems/ruboty)
4
- [![Build Status](https://travis-ci.org/r7kamura/ruboty.png)](https://travis-ci.org/r7kamura/ruboty)
3
+ [![Gem](https://img.shields.io/gem/v/ruboty.svg)](https://rubygems.org/gems/ruboty)
4
+ [![Build Status](https://travis-ci.org/r7kamura/ruboty.svg)](https://travis-ci.org/r7kamura/ruboty)
5
5
 
6
6
  Ruby + Bot = Ruboty.
7
7
 
@@ -13,11 +13,14 @@ Ruby + Bot = Ruboty.
13
13
 
14
14
  Adapter hooks up ruboty to chat services.
15
15
 
16
- - [ruboty-slack](https://github.com/r7kamura/ruboty-slack)
16
+ - Slack
17
+ - [ruboty-slack](https://github.com/r7kamura/ruboty-slack) (XMPP gateway)
18
+ - [ruboty-slack_rtm](https://github.com/rosylilly/ruboty-slack_rtm) (Bot RTM API)
17
19
  - [ruboty-twitter](https://github.com/r7kamura/ruboty-twitter)
18
20
  - [ruboty-hipchat](https://github.com/r7kamura/ruboty-hipchat)
19
21
  - [ruboty-idobata](https://github.com/hanachin/ruboty-idobata)
20
22
  - [ruboty-chatwork](https://github.com/mhag/ruboty-chatwork)
23
+ - [ruboty-discord](https://github.com/ykzts/ruboty-discord)
21
24
 
22
25
  ## Brain
23
26
 
@@ -1,7 +1,7 @@
1
1
  module Ruboty
2
2
  class Action
3
3
  def self.prefix_pattern(robot_name)
4
- /\A@?#{Regexp.escape(robot_name)}:?\s+/
4
+ /\A@?#{Regexp.escape(robot_name)}:?[[:space:]]+/
5
5
  end
6
6
 
7
7
  attr_reader :options, :pattern
@@ -1,3 +1,3 @@
1
1
  module Ruboty
2
- VERSION = "1.3.0"
2
+ VERSION = "1.3.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruboty
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryo Nakamura
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-11-27 00:00:00.000000000 Z
11
+ date: 2020-07-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -197,8 +197,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
197
197
  - !ruby/object:Gem::Version
198
198
  version: '0'
199
199
  requirements: []
200
- rubyforge_project:
201
- rubygems_version: 2.4.5.1
200
+ rubygems_version: 3.0.3
202
201
  signing_key:
203
202
  specification_version: 4
204
203
  summary: Ruby + Bot = Ruboty