Sha256: 8f60378bbe1723ffd14027300808886888cf5c8e565cbfe4c0526fa37ce76c11

Contents?: true

Size: 1.55 KB

Versions: 1

Compression:

Stored size: 1.55 KB

Contents

module Git
  module Whistles
    class Jira
      attr_reader :username, :token, :site

      def initialize
        get_config
      end

      def get_client(opts = {})
        options = {
          username: @username,
          password: @token,
          site: @site,
          context_path: '',
          auth_type: :basic,
          read_timeout: 120
        }

        options.merge!(opts)

        JIRA::Client.new(options)
      end

      def get_config
        @username = `git config jira.username`.strip
        if username.empty?
          puts Term::ANSIColor.yellow %Q{
            Your branch appears to have a issue ID,
            but I don't know your JIRA username!
            Please set it with:
            $ git config [--global] jira.username <username>
          }
          raise "Aborting."
        end

        @token = `git config jira.token`.strip
        if token.empty?
          puts Term::ANSIColor.yellow %Q{
            Your branch appears to have a issue ID,
            but I don't know your JIRA token!
            Please set it with:
            $ git config [--global] jira.token <token>
          }
          raise "Aborting."
        end

        @site = `git config jira.site`.strip
        if site.empty?
          puts Term::ANSIColor.yellow %Q{
            Your branch appears to have a issue ID,
            but I don't know your JIRA site!
            Please set it with:
            $ git config [--global] jira.site <https://mydomain.atlassian.net>
          }
          raise "Aborting."
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
git-whistles-1.4.2 lib/git-whistles/jira.rb