picky 1.3.1 → 1.3.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/lib/picky/cli.rb +6 -4
  2. data/spec/lib/cli_spec.rb +6 -6
  3. metadata +2 -2
data/lib/picky/cli.rb CHANGED
@@ -21,8 +21,10 @@ module Picky
21
21
  def usage name, params
22
22
  puts "Usage\n picky #{name} #{params_to_s(params)}"
23
23
  end
24
+ # String params are optional, Symbol params aren't.
25
+ #
24
26
  def params_to_s params
25
- params.map { |param| "<#{param}>" }.join(' ') if params
27
+ params.map { |param| param.respond_to?(:to_str) ? "[#{param}]" : param }.join(' ') if params
26
28
  end
27
29
  end
28
30
  class Statistics < Base
@@ -88,10 +90,10 @@ module Picky
88
90
  # Maps commands to the other gem's command.
89
91
  #
90
92
  @@mapping = {
91
- :generate => [Generate, 'sinatra_client | unicorn_server | empty_unicorn_server', 'app_directory_name (optional)'],
93
+ :generate => [Generate, :'(sinatra_client | unicorn_server | empty_unicorn_server)', :'app_directory_name'],
92
94
  :help => [Help],
93
- :stats => [Statistics, 'logfile, e.g. log/search.log', 'port (optional)'],
94
- :live => [Live, 'host:port/path (optional, default: localhost:8080/admin)', 'port (optional)']
95
+ :stats => [Statistics, :'logfile (e.g. log/search.log)', 'port (default: 4567)'],
96
+ :live => [Live, 'host:port/path (default: localhost:8080/admin)', 'port (default: 4568)']
95
97
  }
96
98
  def self.mapping
97
99
  @@mapping
data/spec/lib/cli_spec.rb CHANGED
@@ -19,16 +19,16 @@ describe Picky::CLI do
19
19
  @cli.executor_class_for.should == [Picky::CLI::Help]
20
20
  end
21
21
  it 'returns Generator for generate' do
22
- @cli.executor_class_for(:generate).should == [Picky::CLI::Generate, "sinatra_client | unicorn_server | empty_unicorn_server", "app_directory_name (optional)"]
22
+ @cli.executor_class_for(:generate).should == [Picky::CLI::Generate, :"(sinatra_client | unicorn_server | empty_unicorn_server)", :"app_directory_name"]
23
23
  end
24
24
  it 'returns Help for help' do
25
25
  @cli.executor_class_for(:help).should == [Picky::CLI::Help]
26
26
  end
27
27
  it 'returns Statistics for stats' do
28
- @cli.executor_class_for(:stats).should == [Picky::CLI::Statistics, "logfile, e.g. log/search.log", "port (optional)"]
28
+ @cli.executor_class_for(:stats).should == [Picky::CLI::Statistics, :"logfile (e.g. log/search.log)", "port (default: 4567)"]
29
29
  end
30
30
  it 'returns Live for live' do
31
- @cli.executor_class_for(:live).should == [Picky::CLI::Live, "host:port/path (optional, default: localhost:8080/admin)", "port (optional)"]
31
+ @cli.executor_class_for(:live).should == [Picky::CLI::Live, "host:port/path (default: localhost:8080/admin)", "port (default: 4568)"]
32
32
  end
33
33
  end
34
34
  end
@@ -45,14 +45,14 @@ describe Picky::CLI do
45
45
  end
46
46
  describe 'usage' do
47
47
  it 'calls puts with an usage' do
48
- @executor.should_receive(:puts).once.with "Usage\n picky some_name <param1> <param 2 (optional)>"
48
+ @executor.should_receive(:puts).once.with "Usage\n picky some_name param1 [param2]"
49
49
 
50
- @executor.usage :some_name, [:param1, 'param 2 (optional)']
50
+ @executor.usage :some_name, [:param1, 'param2']
51
51
  end
52
52
  end
53
53
  describe 'params_to_s' do
54
54
  it 'returns the right string' do
55
- @executor.params_to_s([:param1, 'param 2 (optional)']).should == '<param1> <param 2 (optional)>'
55
+ @executor.params_to_s([:param1, 'param2']).should == 'param1 [param2]'
56
56
  end
57
57
  end
58
58
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 1
7
7
  - 3
8
- - 1
9
- version: 1.3.1
8
+ - 2
9
+ version: 1.3.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Florian Hanke