Sha256: 8e6cd32d05c2ff67773c83f4548bed231a6811d349e87aef25510e1b83f4a8b6

Contents?: true

Size: 712 Bytes

Versions: 2

Compression:

Stored size: 712 Bytes

Contents

require 'thor'
class SlowlaneFabric < Thor

  class_option :username , :default => '<username>' , :required => true, :desc => 'username [SLOWLANE_FABRIC_USERNAME]'
  class_option :password , :default => '<password>' , :required => true, :desc => 'password [SLOWLANE_FABRIC_PASSWORD]'
  class_option :team , :default => '<team>' , :required => false, :desc => 'team [SLOWLANE_FABRIC_TEAM]'

  desc "app SUBCOMMAND ...ARGS", "manage apps"
  subcommand "app", Slowlane::Fabric::App

  desc "organization SUBCOMMAND ...ARGS", "manage organizations"
  subcommand "organization", Slowlane::Fabric::Organization

  desc "tester SUBCOMMAND ...ARGS", "manage testers"
  subcommand "tester", Slowlane::Fabric::Tester

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
slowlane-1.1.1 lib/slowlane/fabric/command.rb
slowlane-1.1.0 lib/slowlane/fabric/command.rb