Sha256: 47b316bcfbf6975a1641a7bc632c53250ca8e529f15833982ddbbcdee136928b

Contents?: true

Size: 760 Bytes

Versions: 35

Compression:

Stored size: 760 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

35 entries across 35 versions & 1 rubygems

Version Path
onebox-2.1.0 lib/onebox/engine/github_blob_onebox.rb
onebox-2.0.2 lib/onebox/engine/github_blob_onebox.rb
onebox-2.0.1 lib/onebox/engine/github_blob_onebox.rb
onebox-2.0.0 lib/onebox/engine/github_blob_onebox.rb
onebox-1.9.30 lib/onebox/engine/github_blob_onebox.rb
onebox-1.9.29 lib/onebox/engine/github_blob_onebox.rb
onebox-1.9.28.4 lib/onebox/engine/github_blob_onebox.rb
onebox-1.9.28.3 lib/onebox/engine/github_blob_onebox.rb
onebox-1.9.28.2 lib/onebox/engine/github_blob_onebox.rb
onebox-1.9.28.1 lib/onebox/engine/github_blob_onebox.rb
onebox-1.9.28 lib/onebox/engine/github_blob_onebox.rb
onebox-1.9.27.2 lib/onebox/engine/github_blob_onebox.rb
onebox-1.9.27.1 lib/onebox/engine/github_blob_onebox.rb
onebox-1.9.26 lib/onebox/engine/github_blob_onebox.rb
onebox-1.9.25 lib/onebox/engine/github_blob_onebox.rb