ego 0.2.0 → 0.3.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 +4 -4
- data/lib/ego/filesystem.rb +6 -6
- data/lib/ego/formatter.rb +16 -11
- data/lib/ego/handler.rb +7 -7
- data/lib/ego/listener.rb +2 -2
- data/lib/ego/robot.rb +6 -6
- data/lib/ego/version.rb +1 -1
- data/spec/ego/formatter_spec.rb +53 -0
- data/spec/ego/options_spec.rb +5 -0
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db83be1f5d3be9a990e8990b6f10b3fabd634939
|
4
|
+
data.tar.gz: 2dce79d2d96a4bf49c7bcdd1c5605f79ba31df97
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 29423bd9409d40de8a4fe31e2e1893e3ffe7742b82f309cbc21df6b80f74082996d8ec62d5a69c67de6a07c50db8ed5dff4467187ca71ffedc74d2cb89ca534e
|
7
|
+
data.tar.gz: 3741072a3a11271babcd8168db8cf49592f24cb3e415870f0bdf75e190132301fe7956caa3b1c3fcfec47fc36610cb566cf756ac6ee55c3129c294d42ab0e012
|
data/lib/ego/filesystem.rb
CHANGED
@@ -9,16 +9,16 @@ module Ego::Filesystem
|
|
9
9
|
|
10
10
|
module_function
|
11
11
|
|
12
|
-
def cache
|
13
|
-
File.join
|
12
|
+
def cache(path = '')
|
13
|
+
File.join(XDG_CACHE_HOME, BASENAME, path)
|
14
14
|
end
|
15
15
|
|
16
|
-
def config
|
17
|
-
File.join
|
16
|
+
def config(path = '')
|
17
|
+
File.join(XDG_CONFIG_HOME, BASENAME, path)
|
18
18
|
end
|
19
19
|
|
20
|
-
def data
|
21
|
-
File.join
|
20
|
+
def data(path = '')
|
21
|
+
File.join(XDG_DATA_HOME, BASENAME, path)
|
22
22
|
end
|
23
23
|
|
24
24
|
def builtin_handlers
|
data/lib/ego/formatter.rb
CHANGED
@@ -3,28 +3,33 @@ require 'colorize'
|
|
3
3
|
module Ego
|
4
4
|
class Formatter
|
5
5
|
def initialize
|
6
|
-
String.disable_colorization =
|
6
|
+
String.disable_colorization = !$stdout.isatty
|
7
7
|
end
|
8
8
|
|
9
|
-
def puts
|
10
|
-
|
9
|
+
def puts(message)
|
10
|
+
$stdout.puts message
|
11
11
|
end
|
12
12
|
|
13
|
-
def robot_respond
|
14
|
-
|
13
|
+
def robot_respond(message, *replacements)
|
14
|
+
message = sprintf(message, *replacements)
|
15
|
+
message = message[0].upcase + message[1..-1]
|
16
|
+
|
17
|
+
$stdout.puts message.yellow
|
15
18
|
end
|
16
19
|
|
17
|
-
def robot_action
|
18
|
-
|
20
|
+
def robot_action(message)
|
21
|
+
$stdout.puts "*#{message}*".magenta
|
19
22
|
end
|
20
23
|
|
21
|
-
def debug
|
22
|
-
|
24
|
+
def debug(message, *replacements)
|
25
|
+
message = sprintf(message, *replacements)
|
26
|
+
|
27
|
+
$stderr.puts message
|
23
28
|
end
|
24
29
|
|
25
|
-
def self.print_handlers
|
30
|
+
def self.print_handlers(handlers)
|
26
31
|
handlers.keys.sort.each do |key|
|
27
|
-
|
32
|
+
$stdout.puts "- #{handlers[key]}"
|
28
33
|
end
|
29
34
|
end
|
30
35
|
end
|
data/lib/ego/handler.rb
CHANGED
@@ -9,7 +9,7 @@ module Ego
|
|
9
9
|
attr_reader :name
|
10
10
|
attr_accessor :description
|
11
11
|
|
12
|
-
def initialize
|
12
|
+
def initialize(name)
|
13
13
|
@name = name
|
14
14
|
end
|
15
15
|
|
@@ -17,14 +17,14 @@ module Ego
|
|
17
17
|
"#{@description}"
|
18
18
|
end
|
19
19
|
|
20
|
-
def listen
|
20
|
+
def listen(pattern, priority: 5, &parser)
|
21
21
|
unless block_given?
|
22
22
|
parser = Proc.new { |matches| matches }
|
23
23
|
end
|
24
24
|
@@listeners << Ego::Listener.new(pattern, priority, parser, @name)
|
25
25
|
end
|
26
26
|
|
27
|
-
def run
|
27
|
+
def run(robot = nil, params = nil, &action)
|
28
28
|
if block_given?
|
29
29
|
@action = action
|
30
30
|
end
|
@@ -38,7 +38,7 @@ module Ego
|
|
38
38
|
end
|
39
39
|
end
|
40
40
|
|
41
|
-
def self.register
|
41
|
+
def self.register(name: nil)
|
42
42
|
if name.nil?
|
43
43
|
handler_path = caller_locations(1, 1)[0].absolute_path
|
44
44
|
name = File.basename(handler_path, '.*')
|
@@ -50,18 +50,18 @@ module Ego
|
|
50
50
|
@@handlers[handler.name] = handler
|
51
51
|
end
|
52
52
|
|
53
|
-
def self.has
|
53
|
+
def self.has(handler_name)
|
54
54
|
@@handlers.has_key? handler_name
|
55
55
|
end
|
56
56
|
|
57
|
-
def self.load
|
57
|
+
def self.load(handler_names)
|
58
58
|
handler_names.each do |path|
|
59
59
|
handler = File.basename(path, '.*')
|
60
60
|
require path unless has(handler)
|
61
61
|
end
|
62
62
|
end
|
63
63
|
|
64
|
-
def self.dispatch
|
64
|
+
def self.dispatch(robot, query)
|
65
65
|
@@listeners.sort.reverse_each do |listener|
|
66
66
|
if params = listener.match(query)
|
67
67
|
return @@handlers[listener.handler].run(robot, params)
|
data/lib/ego/listener.rb
CHANGED
@@ -5,7 +5,7 @@ module Ego
|
|
5
5
|
|
6
6
|
attr_accessor :pattern, :priority, :parser, :handler
|
7
7
|
|
8
|
-
def initialize
|
8
|
+
def initialize(pattern, priority, parser, handler)
|
9
9
|
@pattern = pattern
|
10
10
|
@priority = priority
|
11
11
|
@parser = parser
|
@@ -16,7 +16,7 @@ module Ego
|
|
16
16
|
@priority <=> other.priority
|
17
17
|
end
|
18
18
|
|
19
|
-
def match
|
19
|
+
def match(query)
|
20
20
|
return false unless (matches = @pattern.match(query))
|
21
21
|
|
22
22
|
@parser.call matches
|
data/lib/ego/robot.rb
CHANGED
@@ -2,23 +2,23 @@ module Ego
|
|
2
2
|
class Robot
|
3
3
|
attr_reader :name, :options
|
4
4
|
|
5
|
-
def initialize
|
5
|
+
def initialize(options, formatter)
|
6
6
|
@name = options.robot_name
|
7
7
|
@options = options
|
8
8
|
@formatter = formatter
|
9
9
|
end
|
10
10
|
|
11
|
-
def respond
|
12
|
-
@formatter.robot_respond message
|
11
|
+
def respond(message, *replacements)
|
12
|
+
@formatter.robot_respond message, *replacements
|
13
13
|
end
|
14
14
|
|
15
|
-
def it
|
15
|
+
def it(message)
|
16
16
|
@formatter.robot_action message
|
17
17
|
end
|
18
18
|
|
19
|
-
def debug
|
19
|
+
def debug(message, *replacements)
|
20
20
|
return unless @options.verbose
|
21
|
-
@formatter.debug message
|
21
|
+
@formatter.debug message, *replacements
|
22
22
|
end
|
23
23
|
end
|
24
24
|
end
|
data/lib/ego/version.rb
CHANGED
@@ -0,0 +1,53 @@
|
|
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
|
data/spec/ego/options_spec.rb
CHANGED
@@ -6,6 +6,11 @@ RSpec.describe Ego::Options do
|
|
6
6
|
expect(opts.mode).to eq(:interpret)
|
7
7
|
end
|
8
8
|
|
9
|
+
it 'can be set to shell-mode' do
|
10
|
+
opts = Ego::Options.new(['-s'])
|
11
|
+
expect(opts.mode).to eq(:shell)
|
12
|
+
end
|
13
|
+
|
9
14
|
it 'can be set to version-mode' do
|
10
15
|
opts = Ego::Options.new(['-v'])
|
11
16
|
expect(opts.mode).to eq(:version)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ego
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Noah Frederick
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-12-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -115,6 +115,7 @@ files:
|
|
115
115
|
- lib/ego/robot.rb
|
116
116
|
- lib/ego/runner.rb
|
117
117
|
- lib/ego/version.rb
|
118
|
+
- spec/ego/formatter_spec.rb
|
118
119
|
- spec/ego/options_spec.rb
|
119
120
|
- spec/ego/robot_spec.rb
|
120
121
|
- spec/spec_helper.rb
|
@@ -143,6 +144,7 @@ signing_key:
|
|
143
144
|
specification_version: 4
|
144
145
|
summary: An extensible personal command-line assistant
|
145
146
|
test_files:
|
147
|
+
- spec/ego/formatter_spec.rb
|
146
148
|
- spec/ego/options_spec.rb
|
147
149
|
- spec/ego/robot_spec.rb
|
148
150
|
- spec/spec_helper.rb
|