tjplurk 1.4.3 → 1.4.4

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
  SHA1:
3
- metadata.gz: 809cd942490d3c20c90da820859792308a5aba88
4
- data.tar.gz: 40aa76e5852df81ee77b5c4c8e0fc1f287283c7c
3
+ metadata.gz: df5701cf79e570700f1af149d19112ef03bf9adf
4
+ data.tar.gz: 19bf269d2974f0de8e71030018220bcf70f27486
5
5
  SHA512:
6
- metadata.gz: 4e1b26fd347ec9d76bdb84353381b0ddc7ef0a75b6ddae10d1601fe693cf24fb963edf5bfab57eca4ea1199692ca230e2ccb31bc162c1909878696c860ce37fe
7
- data.tar.gz: 596255b94e06c903d1914441094171266bed85520610053454ae2bf18b470ec768475113d8879d83cd5c6950e9059c2c0f81157660dc2d4d6685ac315e407754
6
+ metadata.gz: ba577bd19c328c7174ed578f447acdd243329c296c4760fc7609e25c4e85b96c6063990aded915bb71c7cf9801665c579fdf7a9289cf40adb70514b2e6015720
7
+ data.tar.gz: 54c83bbd1d9abfb63bee4828ecffe8a6fcef6ba9c1b8b9d4ed95bf812d8159da69f07a3b8a71d038eb4f9a9bf3666fcc872d228cb1df45be8c7d3272ac5afbee
data/lib/tjplurk/robot.rb CHANGED
@@ -7,7 +7,8 @@ module Tjplurk
7
7
  def respond input
8
8
  if matched = @topics.each{|topic| topic.pattern = Regexp.new(topic.pattern) if topic.pattern.is_a? String}.select{|topic| topic.pattern.match(input) }.sample
9
9
  response = matched.responses.sample.content
10
- input.gsub(matched.pattern, response)
10
+ match_data = matched.pattern.match(input)
11
+ response.gsub(/\\(\d+)/){|s| match_data[$1.to_i]}
11
12
  end
12
13
  end
13
14
  end
@@ -1,3 +1,3 @@
1
1
  module Tjplurk
2
- VERSION = '1.4.3'
2
+ VERSION = '1.4.4'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tjplurk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.3
4
+ version: 1.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tony Jian