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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2250f057ded898c375e1c7007080abbddb3ddbcb
4
- data.tar.gz: 05c37f206fa38f7ba8a6879d4519dba59dfd74c6
3
+ metadata.gz: db83be1f5d3be9a990e8990b6f10b3fabd634939
4
+ data.tar.gz: 2dce79d2d96a4bf49c7bcdd1c5605f79ba31df97
5
5
  SHA512:
6
- metadata.gz: 3e3b434aece55fb5a6f7b0c1ce850cc2b9f41cec5b092bd59e28773ff03c16c92ae9445828981eb147129f8d6c17c3ffccd1834448396325e04661dae2bde0e3
7
- data.tar.gz: 1c3d3feb0fb8d531a931c5522ce2803e32d6a82d5875bed4b3b4d12b5c632c083b1eb3657439cedb5b88b03a218ef3582c4b9911df1d6b376548684b15353f9d
6
+ metadata.gz: 29423bd9409d40de8a4fe31e2e1893e3ffe7742b82f309cbc21df6b80f74082996d8ec62d5a69c67de6a07c50db8ed5dff4467187ca71ffedc74d2cb89ca534e
7
+ data.tar.gz: 3741072a3a11271babcd8168db8cf49592f24cb3e415870f0bdf75e190132301fe7956caa3b1c3fcfec47fc36610cb566cf756ac6ee55c3129c294d42ab0e012
@@ -9,16 +9,16 @@ module Ego::Filesystem
9
9
 
10
10
  module_function
11
11
 
12
- def cache path = ''
13
- File.join XDG_CACHE_HOME, BASENAME, path
12
+ def cache(path = '')
13
+ File.join(XDG_CACHE_HOME, BASENAME, path)
14
14
  end
15
15
 
16
- def config path = ''
17
- File.join XDG_CONFIG_HOME, BASENAME, path
16
+ def config(path = '')
17
+ File.join(XDG_CONFIG_HOME, BASENAME, path)
18
18
  end
19
19
 
20
- def data path = ''
21
- File.join XDG_DATA_HOME, BASENAME, path
20
+ def data(path = '')
21
+ File.join(XDG_DATA_HOME, BASENAME, path)
22
22
  end
23
23
 
24
24
  def builtin_handlers
@@ -3,28 +3,33 @@ require 'colorize'
3
3
  module Ego
4
4
  class Formatter
5
5
  def initialize
6
- String.disable_colorization = !STDOUT.isatty
6
+ String.disable_colorization = !$stdout.isatty
7
7
  end
8
8
 
9
- def puts message
10
- STDOUT.puts message
9
+ def puts(message)
10
+ $stdout.puts message
11
11
  end
12
12
 
13
- def robot_respond message
14
- STDOUT.puts message.yellow
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 message
18
- STDOUT.puts "*#{message}*".magenta
20
+ def robot_action(message)
21
+ $stdout.puts "*#{message}*".magenta
19
22
  end
20
23
 
21
- def debug message
22
- STDERR.puts message
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 handlers
30
+ def self.print_handlers(handlers)
26
31
  handlers.keys.sort.each do |key|
27
- STDOUT.puts "- #{handlers[key]}"
32
+ $stdout.puts "- #{handlers[key]}"
28
33
  end
29
34
  end
30
35
  end
@@ -9,7 +9,7 @@ module Ego
9
9
  attr_reader :name
10
10
  attr_accessor :description
11
11
 
12
- def initialize name
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 pattern, priority: 5, &parser
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 robot = nil, params = nil, &action
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 name: nil
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 handler_name
53
+ def self.has(handler_name)
54
54
  @@handlers.has_key? handler_name
55
55
  end
56
56
 
57
- def self.load handler_names
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 robot, query
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)
@@ -5,7 +5,7 @@ module Ego
5
5
 
6
6
  attr_accessor :pattern, :priority, :parser, :handler
7
7
 
8
- def initialize pattern, priority, parser, handler
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 query
19
+ def match(query)
20
20
  return false unless (matches = @pattern.match(query))
21
21
 
22
22
  @parser.call matches
@@ -2,23 +2,23 @@ module Ego
2
2
  class Robot
3
3
  attr_reader :name, :options
4
4
 
5
- def initialize options, formatter
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 message
12
- @formatter.robot_respond message
11
+ def respond(message, *replacements)
12
+ @formatter.robot_respond message, *replacements
13
13
  end
14
14
 
15
- def it message
15
+ def it(message)
16
16
  @formatter.robot_action message
17
17
  end
18
18
 
19
- def debug message
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
@@ -1,3 +1,3 @@
1
1
  module Ego
2
- VERSION = '0.2.0'
2
+ VERSION = '0.3.0'
3
3
  end
@@ -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
@@ -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.2.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-08-29 00:00:00.000000000 Z
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