class Ppl::Command::Org
Public Class Methods
new()
click to toggle source
# File lib/ppl/command/org.rb, line 6 def initialize @attribute = :organizations end
Public Instance Methods
options(parser, options)
click to toggle source
# File lib/ppl/command/org.rb, line 10 def options(parser, options) parser.banner = "usage: ppl org <contact> [<organization>]" parser.on("-d", "--delete", "delete organization") do options[:delete] = true end end