onebox 2.2.2 → 2.2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +5 -10
- data/lib/onebox/engine/github_issue_onebox.rb +1 -2
- data/lib/onebox/engine/json.rb +1 -1
- data/lib/onebox/engine/pubmed_onebox.rb +1 -1
- data/lib/onebox/mixins/git_blob_onebox.rb +1 -1
- data/lib/onebox/sanitize_config.rb +1 -1
- data/lib/onebox/status_check.rb +1 -1
- data/lib/onebox/version.rb +1 -1
- data/onebox.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 759d82290c29b9e1e3c97045ca14689dfc0f2f87221c1ce829b12a866abfd8a2
|
4
|
+
data.tar.gz: 5209c14887939549d9737409bd5dff67c2434c5a5f99596d2af93ef56aeaae6b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 719a0e4e72b2719f8ab0fd71474bfd07ef485c4dcba2c13809d5fbafa86f9b831ebe1aa7a73237c9cde28d7babc472234fa9ae701d9b18aae25621a641c883a0
|
7
|
+
data.tar.gz: f8c0c6c5883c48ea2811940f00c2419438e199c1e9a70761453c9aafdf176404633dc79133fc87d4014ee0e0c74a037ee8ee19b2f9b46cd85ef07a491f64cfe6
|
data/.github/workflows/ci.yml
CHANGED
@@ -15,24 +15,19 @@ jobs:
|
|
15
15
|
strategy:
|
16
16
|
matrix:
|
17
17
|
ruby:
|
18
|
-
- 2.4
|
19
18
|
- 2.5
|
20
19
|
- 2.6
|
20
|
+
- 2.7
|
21
|
+
- 3.0
|
21
22
|
|
22
23
|
steps:
|
23
|
-
- uses: actions/checkout@
|
24
|
+
- uses: actions/checkout@v2
|
24
25
|
|
25
26
|
- name: Setup ruby
|
26
|
-
uses:
|
27
|
+
uses: ruby/setup-ruby@v1
|
27
28
|
with:
|
28
29
|
ruby-version: ${{ matrix.ruby }}
|
29
|
-
|
30
|
-
|
31
|
-
- name: Setup bundler
|
32
|
-
run: gem install bundler
|
33
|
-
|
34
|
-
- name: Setup gems
|
35
|
-
run: bundle install
|
30
|
+
bundler-cache: true
|
36
31
|
|
37
32
|
- name: Rubocop
|
38
33
|
run: bundle exec rubocop
|
@@ -22,8 +22,7 @@ module Onebox
|
|
22
22
|
end
|
23
23
|
|
24
24
|
def data
|
25
|
-
|
26
|
-
@raw ||= ::MultiJson.load(open(url, "Accept" => "application/vnd.github.v3.text+json", read_timeout: timeout)) #custom Accept header so we can get body as text.
|
25
|
+
@raw ||= ::MultiJson.load(URI.open(url, "Accept" => "application/vnd.github.v3.text+json", read_timeout: timeout)) #custom Accept header so we can get body as text.
|
27
26
|
body_text = @raw["body_text"]
|
28
27
|
|
29
28
|
content_words = body_text.gsub("\n\n", "\n").gsub("\n", "<br>").split(" ") #one pass of removing double newline, then we change \n to <br> and later on we revert it back to \n this is a workaround to avoid losing newlines after we join it back.
|
data/lib/onebox/engine/json.rb
CHANGED
@@ -11,7 +11,7 @@ module Onebox
|
|
11
11
|
private
|
12
12
|
|
13
13
|
def get_xml
|
14
|
-
doc = Nokogiri::XML(open(URI.join(@url, "?report=xml&format=text")))
|
14
|
+
doc = Nokogiri::XML(URI.open(URI.join(@url, "?report=xml&format=text")))
|
15
15
|
pre = doc.xpath("//pre")
|
16
16
|
Nokogiri::XML("<root>" + pre.text + "</root>")
|
17
17
|
end
|
@@ -167,7 +167,7 @@ module Onebox
|
|
167
167
|
@raw = "https://render.githubusercontent.com/view/solid?url=" + self.raw_template(m)
|
168
168
|
|
169
169
|
else
|
170
|
-
contents = open(self.raw_template(m), read_timeout: timeout).read
|
170
|
+
contents = URI.open(self.raw_template(m), read_timeout: timeout).read
|
171
171
|
|
172
172
|
contents_lines = contents.lines #get contents lines
|
173
173
|
contents_lines_size = contents_lines.size #get number of lines
|
@@ -10,7 +10,7 @@ class Sanitize
|
|
10
10
|
|
11
11
|
attributes: {
|
12
12
|
'a' => RELAXED[:attributes]['a'] + %w(target),
|
13
|
-
'audio' => %w[controls],
|
13
|
+
'audio' => %w[controls controlslist],
|
14
14
|
'embed' => %w[height src type width],
|
15
15
|
'iframe' => %w[allowfullscreen frameborder height scrolling src width data-original-href data-unsanitized-src],
|
16
16
|
'source' => %w[src type],
|
data/lib/onebox/status_check.rb
CHANGED
@@ -35,7 +35,7 @@ module Onebox
|
|
35
35
|
private
|
36
36
|
|
37
37
|
def check
|
38
|
-
res = open(@url, read_timeout: (@options.timeout || Onebox.options.timeout))
|
38
|
+
res = URI.open(@url, read_timeout: (@options.timeout || Onebox.options.timeout))
|
39
39
|
@status = res.status.first.to_i
|
40
40
|
rescue OpenURI::HTTPError => e
|
41
41
|
@status = e.io.status.first.to_i
|
data/lib/onebox/version.rb
CHANGED
data/onebox.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: onebox
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Joanna Zeta
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2021-
|
13
|
+
date: 2021-02-24 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: addressable
|
@@ -413,7 +413,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
413
413
|
requirements:
|
414
414
|
- - ">="
|
415
415
|
- !ruby/object:Gem::Version
|
416
|
-
version: 2.
|
416
|
+
version: 2.5.0
|
417
417
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
418
418
|
requirements:
|
419
419
|
- - ">="
|