Sha256: b338548231aedbb3652ad3cec1f62e64ef5e65d40a739c2bf30be4c6e75aa9e5
Contents?: true
Size: 951 Bytes
Versions: 28
Compression:
Stored size: 951 Bytes
Contents
module Onebox module Engine class GithubPullRequestOnebox include Engine include LayoutSupport include JSON matches_regexp Regexp.new("^https?://(?:www\\.)?(?:(?:\\w)+\\.)?(github)\\.com(?:/)?(?:.)*/pull/") always_https def url "https://api.github.com/repos/#{match[:owner]}/#{match[:repository]}/pulls/#{match[:number]}" end private def match @match ||= @url.match(%r{github\.com/(?<owner>[^/]+)/(?<repository>[^/]+)/pull/(?<number>[^/]+)}) end def data result = raw.clone result['link'] = link result['created_at'] = Time.parse(result['created_at']).strftime("%I:%M%p - %d %b %y") ulink = URI(link) result['repository_path'] = "#{ulink.host}/#{ulink.path.split('/')[1]}/#{ulink.path.split('/')[2]}" result['repository_url'] = "https://#{result['repository_path']}" result end end end end
Version data entries
28 entries across 28 versions & 1 rubygems