Sha256: a863c2f4ffad328c6396580b15d9b16837d0c700131682f3fdb3086630b68b01

Contents?: true

Size: 544 Bytes

Versions: 1

Compression:

Stored size: 544 Bytes

Contents

module Troo
  module CLI
    class Default < ThorFixes
      package_name 'default'

      desc 'board <id>',
           'Set the board <id> to default.'
      def board(id)
        say Commands::Default::Board.dispatch(id)
      end

      desc 'card <id>',
           'Set the card <id> to default.'
      def card(id)
        say Commands::Default::Card.dispatch(id)
      end

      desc 'list <id>',
           'Set the list <id> to default.'
      def list(id)
        say Commands::Default::List.dispatch(id)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
troo-0.0.8 lib/troo/cli/default.rb