templater 0.4.3 → 0.4.4
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/templater.rb +1 -1
- data/lib/templater/cli/manifold.rb +4 -2
- metadata +2 -2
data/lib/templater.rb
CHANGED
@@ -38,8 +38,10 @@ module Templater
|
|
38
38
|
puts ''
|
39
39
|
puts @manifold.desc
|
40
40
|
puts ''
|
41
|
-
puts 'Available
|
42
|
-
@manifold.public_generators.
|
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.
|
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-
|
12
|
+
date: 2008-11-18 00:00:00 +02:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|