ego 0.3.0 → 0.4.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.
@@ -1,31 +0,0 @@
1
- Ego::Handler.register do |handler|
2
- handler.description = 'let you know when I don\'t understand something'
3
-
4
- handler.listen /(.*)/, priority: 0
5
-
6
- handler.run do |robot, params|
7
- robot.respond %Q{I don't understand "#{params[0]}".}
8
-
9
- handler_slug = params[0]
10
- .gsub(/([A-Z]+)([A-Z][a-z])/, '\1_\2')
11
- .gsub(/([a-z\d])([A-Z])/, '\1_\2')
12
- .tr('\'', '')
13
- .gsub(/\W+/, '_')
14
- .gsub(/__+/, '_')
15
- .downcase
16
-
17
- STDERR.puts <<-EOF
18
- Perhaps add a handler to #{Ego::Filesystem.config "handler/#{handler_slug}.rb"}:
19
-
20
- Ego::Handler.register do |handler|
21
- handler.description = 'do something'
22
-
23
- handler.listen /^#{params[0]}$/
24
-
25
- handler.run do |robot, params|
26
- # ...
27
- end
28
- end
29
- EOF
30
- end
31
- end
@@ -1,9 +0,0 @@
1
- Ego::Handler.register do |handler|
2
- handler.description = 'repeat what you say'
3
-
4
- handler.listen /^(?:say|echo)\s+(?<input>.+)/i, priority: 6
5
-
6
- handler.run do |robot, params|
7
- robot.respond params[:input]
8
- end
9
- end
@@ -1,17 +0,0 @@
1
- Ego::Handler.register do |handler|
2
- handler.description = 'greet you'
3
-
4
- handler.listen /^(hello|salve|ave|hi|hey|ciao|hej)/i, priority: 3
5
-
6
- handler.run do |robot|
7
- robot.respond [
8
- 'Hello.',
9
- 'Salve tu.',
10
- 'Ave.',
11
- 'Hi.',
12
- 'Hey.',
13
- 'Ciao.',
14
- 'Hej.',
15
- ].sample
16
- end
17
- end
@@ -1,15 +0,0 @@
1
- require_relative '../handler'
2
-
3
- Ego::Handler.register do |handler|
4
- handler.description = 'tell you what I can do'
5
-
6
- handler.listen /^(show me|show|tell me|list)\s+(handlers|what you can do|what (?:you are|you're) able to do|what you do|what (?:queries )?you (?:can )?understand)$/i
7
- handler.listen /^what (?:can you|are you able to|do you) (?:do|handle|understand)\??$/i
8
- handler.listen /^help/i, priority: 2
9
-
10
- handler.run do |robot|
11
- robot.respond 'I know how to...'
12
-
13
- Ego::Formatter.print_handlers Ego::Handler.handlers
14
- end
15
- end
@@ -1,9 +0,0 @@
1
- Ego::Handler.register do |handler|
2
- handler.description = 'tell you who I am'
3
-
4
- handler.listen /^(who are you|what('?s| is) your name)/i
5
-
6
- handler.run do |robot|
7
- robot.respond ["#{robot.name} sum.", "This is #{robot.name}, a robot."].sample
8
- end
9
- end
data/lib/ego/listener.rb DELETED
@@ -1,25 +0,0 @@
1
- module Ego
2
- # Listeners map user queries to handlers.
3
- class Listener
4
- include Comparable
5
-
6
- attr_accessor :pattern, :priority, :parser, :handler
7
-
8
- def initialize(pattern, priority, parser, handler)
9
- @pattern = pattern
10
- @priority = priority
11
- @parser = parser
12
- @handler = handler
13
- end
14
-
15
- def <=> other
16
- @priority <=> other.priority
17
- end
18
-
19
- def match(query)
20
- return false unless (matches = @pattern.match(query))
21
-
22
- @parser.call matches
23
- end
24
- end
25
- end
@@ -1,53 +0,0 @@
1
- require 'ego/formatter'
2
-
3
- module Ego
4
- RSpec.describe Formatter do
5
- before(:example) do
6
- @formatter = Formatter.new
7
- end
8
-
9
- describe '#puts' do
10
- it 'prints the message to STDOUT with newline' do
11
- expect { @formatter.puts('X') }.to output("X\n").to_stdout
12
- end
13
- end
14
-
15
- describe '#robot_respond' do
16
- it 'prints the message to STDOUT with color and newline' do
17
- expect { @formatter.robot_respond('X') }.to output("\e[0;33;49mX\e[0m\n").to_stdout
18
- end
19
-
20
- it 'accepts placeholders and replacement strings' do
21
- expect { @formatter.robot_respond('Hello, %s.', 'world') }.to output("\e[0;33;49mHello, world.\e[0m\n").to_stdout
22
- end
23
-
24
- it 'capitalizes the first letter of the message' do
25
- expect { @formatter.robot_respond('foo') }.to output("\e[0;33;49mFoo\e[0m\n").to_stdout
26
- end
27
-
28
- it 'capitalizes the first letter of the message when it is a replacement' do
29
- expect { @formatter.robot_respond('%s', 'foo') }.to output("\e[0;33;49mFoo\e[0m\n").to_stdout
30
- end
31
-
32
- it 'does not lowercase subsequent letters' do
33
- expect { @formatter.robot_respond('foO') }.to output("\e[0;33;49mFoO\e[0m\n").to_stdout
34
- end
35
- end
36
-
37
- describe '#robot_action' do
38
- it 'prints the message to STDOUT with color and formatting' do
39
- expect { @formatter.robot_action('FOO') }.to output("\e[0;35;49m*FOO*\e[0m\n").to_stdout
40
- end
41
- end
42
-
43
- describe '#debug' do
44
- it 'prints the message to STDERR with newline' do
45
- expect { @formatter.debug('FOO') }.to output("FOO\n").to_stderr
46
- end
47
-
48
- it 'accepts placeholders and replacement strings' do
49
- expect { @formatter.debug('Hello, %s.', 'world') }.to output("Hello, world.\n").to_stderr
50
- end
51
- end
52
- end
53
- end