lib/appjam/generators/help.rb in appjam-0.1.8.6 vs lib/appjam/generators/help.rb in appjam-0.1.8.7
- old
+ new
@@ -43,12 +43,14 @@
g = YAML.load_file(File.expand_path(File.dirname(__FILE__) + '/gist.yml'))
end
puts "notice: a new version '#{g['info']}' released" if g['info'] and g['info'].strip != "#{Appjam::Version::STRING}"
puts
puts colorize("Generator Options")
- opt = [{ :category => "puremvc", :command => "appjam mvc_project todo", :description => "generate puremvc iphone project"},
- { :category => "puremvc", :command => "appjam mvc_model user", :description => "generate puremvc iphone model"}
- ]
+ opt = [
+ { :category => "generator", :command => "appjam start demo", :description => "generate a starter application with most popular framework included"},
+ { :category => "puremvc", :command => "appjam mvc_project todo", :description => "generate puremvc iOS project"},
+ { :category => "puremvc", :command => "appjam mvc_model user", :description => "generate puremvc model"}
+ ]
View.render(opt, RENDER_OPTIONS)
puts
g.each_pair {|key,value|
gitopt = []
gname = key.downcase.gsub('_',' ')