Sha256: 323ec315c67f6901a3ea167db5992d9a75a9400f514f4270c22950454af07165
Contents?: true
Size: 1.01 KB
Versions: 3
Compression:
Stored size: 1.01 KB
Contents
require "cp8_cli/adhoc_story" require "cp8_cli/github/issue" module Cp8Cli module Commands class Start def initialize(name) @name = name end def run check_version story.branch.checkout story.start rescue Trello::Error => error Command.error(error.message) end private attr_reader :name def check_version unless Version.latest? Command.error "Your `cp8_cli` version is out of date. Please run `gem update cp8_cli`." end end def story @_story ||= find_or_create_story end def find_or_create_story if name.to_s.start_with?("https://github.com") Github::Issue.find_by_url(name) elsif name.to_s.start_with?("http") Trello::Card.find_by_url(name) elsif name.present? AdhocStory.new(name) else Command.error "No name/url provided" end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
cp8_cli-6.0.1 | lib/cp8_cli/commands/start.rb |
cp8_cli-6.0.0 | lib/cp8_cli/commands/start.rb |
cp8_cli-5.0.0 | lib/cp8_cli/commands/start.rb |