Class: Onebox::Engine::GithubBlobOnebox
- Inherits:
-
Object
- Object
- Onebox::Engine::GithubBlobOnebox
show all
- Includes:
- Mixins::GitBlobOnebox
- Defined in:
- lib/onebox/engine/github_blob_onebox.rb
Constant Summary
Mixins::GitBlobOnebox::DEFAULTS, Mixins::GitBlobOnebox::EXPAND_AFTER, Mixins::GitBlobOnebox::EXPAND_BEFORE, Mixins::GitBlobOnebox::EXPAND_NONE
Class Method Summary
collapse
Instance Method Summary
collapse
included
Class Method Details
.git_regexp ⇒ Object
8
9
10
|
# File 'lib/onebox/engine/github_blob_onebox.rb', line 8
def self.git_regexp
/^https?:\/\/(www\.)?github\.com.*\/blob\//
end
|
.onebox_name ⇒ Object
12
13
14
|
# File 'lib/onebox/engine/github_blob_onebox.rb', line 12
def self.onebox_name
"githubblob"
end
|
Instance Method Details
#raw_regexp ⇒ Object
18
19
20
|
# File 'lib/onebox/engine/github_blob_onebox.rb', line 18
def raw_regexp
/github\.com\/(?<user>[^\/]+)\/(?<repo>[^\/]+)\/blob\/(?<sha1>[^\/]+)\/(?<file>[^#]+)(#(L(?<from>[^-]*)(-L(?<to>.*))?))?/mi
end
|
#raw_template(m) ⇒ Object
22
23
24
|
# File 'lib/onebox/engine/github_blob_onebox.rb', line 22
def raw_template(m)
"https://raw.githubusercontent.com/#{m[:user]}/#{m[:repo]}/#{m[:sha1]}/#{m[:file]}"
end
|
#title ⇒ Object
26
27
28
|
# File 'lib/onebox/engine/github_blob_onebox.rb', line 26
def title
Sanitize.fragment(Onebox::Helpers.uri_unencode(link).sub(/^https?\:\/\/github\.com\//, ''))
end
|