visionmedia-commander 3.1.0 → 3.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.rdoc CHANGED
@@ -1,4 +1,8 @@
1
1
 
2
+ === 3.1.1 / 2009-03-13
3
+
4
+ * Fixed some terminal formatter spacing issues
5
+
2
6
  === 3.1.0 / 2009-03-13
3
7
 
4
8
  * Added Command#inspect
data/commander.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{commander}
5
- s.version = "3.1.0"
5
+ s.version = "3.1.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["TJ Holowaychuk"]
@@ -12,16 +12,14 @@
12
12
  <% unless alias? name %>
13
13
  <%= "%-20s %s" % [command.name, command.summary || command.description] -%>
14
14
  <% end -%>
15
- <% end -%>
15
+ <% end %>
16
16
  <% unless @aliases.empty? %>
17
-
18
17
  <%= $terminal.color "ALIASES", :bold %>:
19
18
  <% @aliases.each do |alias_name, args| %>
20
19
  <%= "%-20s %s %s" % [alias_name, command(alias_name).name, args.join(' ')] -%>
21
20
  <% end -%>
22
- <% end -%>
21
+ <% end %>
23
22
  <% if program :help -%>
24
-
25
23
  <% program(:help).each_pair do |title, body| %>
26
24
  <%= $terminal.color title.to_s.upcase, :bold %>:
27
25
 
@@ -1,4 +1,4 @@
1
1
 
2
2
  module Commander
3
- VERSION = '3.1.0'
3
+ VERSION = '3.1.1'
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: visionmedia-commander
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.0
4
+ version: 3.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - TJ Holowaychuk