Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
danger / lib / danger / ci_source / support / local_pull_request.rb
Size: Mime:
module Danger
  class LocalPullRequest
    attr_reader :pull_request_id, :sha

    def initialize(log_line)
      @pull_request_id = log_line.match(/#(?<id>[0-9]+)/)[:id]
      @sha = log_line.split(" ".freeze).first
    end

    def valid?
      pull_request_id && sha
    end
  end
end