templater 0.4.3 → 0.4.4

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.
@@ -44,6 +44,6 @@ module Templater
44
44
  class MalformattedArgumentError < ArgumentError #:nodoc:
45
45
  end
46
46
 
47
- VERSION = '0.4.3'
47
+ VERSION = '0.4.4'
48
48
 
49
49
  end
@@ -38,8 +38,10 @@ module Templater
38
38
  puts ''
39
39
  puts @manifold.desc
40
40
  puts ''
41
- puts 'Available Generators'
42
- @manifold.public_generators.each do |name, generator|
41
+ puts 'Available generators'
42
+ @manifold.public_generators.sort do |one, other|
43
+ one[0].to_s <=> other[0].to_s
44
+ end.each do |name, generator|
43
45
  print " "
44
46
  print name.to_s.ljust(33)
45
47
  print generator.desc.to_a.first.chomp if generator.desc
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: templater
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonas Nicklas
@@ -9,7 +9,7 @@ autorequire: templater
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-11-16 00:00:00 +02:00
12
+ date: 2008-11-18 00:00:00 +02:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency