Sha256: b68df51fa10a6dbe4568daf119543b675db7839fbc79b10ced0f102d99d85ca7
Contents?: true
Size: 1.23 KB
Versions: 4
Compression:
Stored size: 1.23 KB
Contents
module Toolshed class CommandNotFound < RuntimeError end class CLI def execute(command_name, args, options={}) Toolshed::Client.load_credentials_if_necessary command = commands[command_name] if command begin command.new.execute(args, options) rescue Toolshed::Error => e puts "An error occurred: #{e.message}" rescue RuntimeError => e puts "An error occurred: #{e.message}" end else raise CommandNotFound, "Unknown command: #{command_name}" end end def commands { 'create_github_pull_request' => Toolshed::Commands::CreateGithubPullRequest, 'create_pivotal_tracker_note' => Toolshed::Commands::CreatePivotalTrackerNote, 'get_pivotal_tracker_story_information' => Toolshed::Commands::GetPivotalTrackerStoryInformation, 'update_pivotal_tracker_story_status' => Toolshed::Commands::UpdatePivotalTrackerStoryStatus, } end end end require 'toolshed/commands/create_github_pull_request' require 'toolshed/commands/create_pivotal_tracker_note' require 'toolshed/commands/get_pivotal_tracker_story_information' require 'toolshed/commands/update_pivotal_tracker_story_status'
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
toolshed-0.0.4 | lib/toolshed/cli.rb |
toolshed-0.0.3 | lib/toolshed/cli.rb |
toolshed-0.0.2 | lib/toolshed/cli.rb |
toolshed-0.0.1 | lib/toolshed/cli.rb |