Sha256: 64a3b0f4ab82c841e65cd1f4b10885c1b36ffbe23cebf341b4ebe95149455db8
Contents?: true
Size: 594 Bytes
Versions: 1
Compression:
Stored size: 594 Bytes
Contents
module TrelloCli module CLI class Board include Shared def initialize @options = {} end def list list_boards.each do |list| name = list.attributes[:name] id = list.attributes[:id] puts "#{name} ( #{id} )" end end private def list_boards lb = TrelloCli::Requests::ListBoards.new lb.list end def option_parser(options=@options) OptionParser.new do |opts| opts.banner = "Usage: trello board [list]" end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
trello_cli-0.0.1 | lib/trello_cli/cli/board.rb |