class Unshuffle::CLI

Public Instance Methods

tasks() click to toggle source
# File lib/unshuffle/cli.rb, line 7
def tasks
  client = Unshuffle::Client.new(options[:token])
  puts client.tasks.map(&:title).join("\n")
end