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
permalink
.git_regexp ⇒ Object
[View source]
8
9
10
|
# File 'lib/onebox/engine/github_blob_onebox.rb', line 8
def self.git_regexp
/^https?:\/\/(www\.)?github\.com.*\/blob\//
end
|
permalink
.onebox_name ⇒ Object
[View source]
12
13
14
|
# File 'lib/onebox/engine/github_blob_onebox.rb', line 12
def self.onebox_name
"githubblob"
end
|
Instance Method Details
permalink
#raw_regexp ⇒ Object
[View source]
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
|
permalink
#raw_template(m) ⇒ Object
[View source]
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
|