Sha256: 2b12ece8c496393341f4623b60eead984ca903d03f085d753ca4dd8b05adb988

Contents?: true

Size: 1.65 KB

Versions: 8

Compression:

Stored size: 1.65 KB

Contents

module Berkshelf
  # @author Josiah Kiehl <jkiehl@riotgames.com>
  class GithubLocation < GitLocation
    DEFAULT_PROTOCOL = :git

    set_location_key :github
    set_valid_options :protocol

    attr_accessor :protocol
    attr_accessor :repo_identifier

    # Wraps GitLocation allowing the short form GitHub repo identifier
    # to be used in place of the complete repo url.
    #
    # @see GitLocation#initialize for parameter documentation
    #
    # @option options [String] :github
    #   the GitHub repo identifier to clone
    # @option options [#to_sym] :protocol
    #   the protocol with which to communicate with GitHub
    def initialize(name, version_constraint, options = {})
      @repo_identifier = options.delete(:github)
      @protocol        = (options.delete(:protocol) || DEFAULT_PROTOCOL).to_sym
      options[:git]    = github_url
      super
    end

    # Returns the appropriate GitHub url given the specified protocol
    #
    # @raise [UnknownGitHubProtocol] if the specified protocol is not supported.
    #
    # @return [String]
    #   GitHub url
    def github_url
      case protocol
      when :ssh
        "git@github.com:#{repo_identifier}.git"
      when :https
        "https://github.com/#{repo_identifier}.git"
      when :git
        "git://github.com/#{repo_identifier}.git"
      else
        raise UnknownGitHubProtocol.new(protocol)
      end
    end

    def to_s
      s = "#{self.class.location_key}: '#{repo_identifier}'"
      s << " with branch: '#{branch}'" if branch
      s << " over protocol: '#{protocol}'"
      s
    end

    private

      def default_protocol?
        self.protocol == DEFAULT_PROTOCOL
      end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
berkshelf-1.4.6 lib/berkshelf/locations/github_location.rb
berkshelf-1.4.5 lib/berkshelf/locations/github_location.rb
berkshelf-2.0.0.beta lib/berkshelf/locations/github_location.rb
berkshelf-1.4.4 lib/berkshelf/locations/github_location.rb
berkshelf-1.4.3 lib/berkshelf/locations/github_location.rb
berkshelf-1.4.2 lib/berkshelf/locations/github_location.rb
berkshelf-1.4.1 lib/berkshelf/locations/github_location.rb
berkshelf-1.4.0 lib/berkshelf/locations/github_location.rb