Sha256: 887855a3debbada763d4910ca27b08e6ab9c0240ecabf33395135502ebac131a

Contents?: true

Size: 290 Bytes

Versions: 4

Compression:

Stored size: 290 Bytes

Contents

#!/usr/bin/env ruby

require_relative '../lib/startling_trello'

exit 1 if ARGV.empty?

puts "Fetching lists..."

Startling::Configuration.load_configuration

api = StartlingTrello.api
board = api.find_board(ARGV[0])

puts "ID\tList Name"
board.lists.each { |b| puts "#{b.id}\t#{b.name}" }

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
startling_trello-0.0.4 exe/startling_trello_lists
startling_trello-0.0.3 exe/startling_trello_lists
startling_trello-0.0.2 exe/startling_trello_lists
startling_trello-0.0.1 exe/startling_trello_lists