Sha256: e622de0d7ccde5b340ed7f9ea3ebe4bde2fe8a145d47d90f2182ef80cd74d30f

Contents?: true

Size: 764 Bytes

Versions: 7

Compression:

Stored size: 764 Bytes

Contents

# frozen_string_literal: true

require_relative '../mixins/git_blob_onebox'

module Onebox
  module Engine
    class GithubBlobOnebox
      def self.git_regexp
        /^https?:\/\/(www\.)?github\.com.*\/blob\//
      end

      def self.onebox_name
        "githubblob"
      end

      include Onebox::Mixins::GitBlobOnebox

      def raw_regexp
        /github\.com\/(?<user>[^\/]+)\/(?<repo>[^\/]+)\/blob\/(?<sha1>[^\/]+)\/(?<file>[^#]+)(#(L(?<from>[^-]*)(-L(?<to>.*))?))?/mi
      end

      def raw_template(m)
        "https://raw.githubusercontent.com/#{m[:user]}/#{m[:repo]}/#{m[:sha1]}/#{m[:file]}"
      end

      def title
        Sanitize.fragment(Onebox::Helpers.uri_unencode(link).sub(/^https?\:\/\/github\.com\//, ''))
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
onebox-2.2.19 lib/onebox/engine/github_blob_onebox.rb
onebox-2.2.18 lib/onebox/engine/github_blob_onebox.rb
onebox-2.2.17 lib/onebox/engine/github_blob_onebox.rb
onebox-2.2.16 lib/onebox/engine/github_blob_onebox.rb
onebox-2.2.15 lib/onebox/engine/github_blob_onebox.rb
onebox-2.2.14 lib/onebox/engine/github_blob_onebox.rb
onebox-2.2.13 lib/onebox/engine/github_blob_onebox.rb