Sha256: 37a34eadd9f42e2a455ff9ddc4e4e1d9aa9dfb563c4c48fcbac8ed0eb435a460

Contents?: true

Size: 1.18 KB

Versions: 7

Compression:

Stored size: 1.18 KB

Contents

desc "List things, such as tasks or contexts"
long_desc %(
  List a whole lot of things that you might be keeping track of 
  in your overall todo list.

  This is your go-to place or finding all of the things that you
  might have 
  stored in 
  your todo databases.
)
command [:list] do |c|
  c.default_command :tasks

  c.desc "Show long form"
  c.switch [:l,:long]

  c.desc "List tasks"
  c.long_desc %(
    Lists all of your tasks that you have, in varying orders, and
    all that stuff.  Yes, this is long, but I need a long description.
  )
  c.command :tasks do |tasks|
    tasks.desc "blah blah crud x whatever"
    tasks.flag [:x]

    tasks.flag :flag

    tasks.action do |global,options,args|
      puts "list tasks: #{args.join(',')}"
    end
  end

  c.desc "List contexts"
  c.long_desc %(
    Lists all of your contexts, which are places you might be 
    where you can do stuff and all that.
  )
  c.command :contexts do |contexts|

    contexts.desc "Foobar"
    contexts.switch [:f,'foobar']

    contexts.desc "Blah"
    contexts.switch [:b]

    contexts.flag :otherflag

    contexts.action do |global,options,args|
      puts "list contexts: #{args.join(',')}"
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
gli-2.0.0 test/apps/todo/lib/todo/commands/list.rb
gli-2.0.0.rc8 test/apps/todo/lib/todo/commands/list.rb
gli-2.0.0.rc7 test/apps/todo/lib/todo/commands/list.rb
gli-2.0.0.rc6 test/apps/todo/lib/todo/commands/list.rb
gli-2.0.0.rc5 test/apps/todo/lib/todo/commands/list.rb
gli-2.0.0.rc4 test/apps/todo/lib/todo/commands/list.rb
gli-2.0.0.rc3 test/apps/todo/lib/todo/commands/list.rb