link_thumbnailer 2.3.2 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +8 -8
- data/.hound.yml +2 -0
- data/CHANGELOG.md +4 -0
- data/lib/link_thumbnailer/processor.rb +1 -0
- data/lib/link_thumbnailer/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
YWFmNmRhOTA0NTA0NjAyMDAyZjgwNzhjYzQxOGJiODNlYmQwOTU0OQ==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
OGM1ZDk2ODQ3MTBkMTc4MTAyNzMwMWNmMzQyOGY0YWM2OWQwNTU0Zg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZmNjZjg5YTk0NTIxMWVhZjQ0MjAwNzRjZDM1NGJmM2Y5MTdlZjdiNjYwMWU5
|
|
10
|
+
MzEyYmNmZTY4YzI3YjUwYzY2Mzk4ZjYwZWE3NmE1OGQxZjI0MDVhNTFjZDQz
|
|
11
|
+
OTJmMmQyZGNlM2Y0MzBjYWUxMzAyMjZlYjY0ZGFmOGRmZDcyZGQ=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
NTQyMGVmZjkzZmZkOGYxMTkxMGEzZmRkMDlmMzRmZmVlOThhM2IyNjI1ZmY3
|
|
14
|
+
MjY5MzBjYmQ3MzE0ZmQyYmU1MWY0NmFmMzc4YjUxYzYxZjcyZjgzMzJmYzcz
|
|
15
|
+
ZGY5MDVmMjM0MjM5Y2Q0NGY5YjM1YjIwZTY5YTJiZGIxYzMwZmY=
|
data/.hound.yml
ADDED
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
# 2.4.0
|
|
2
|
+
|
|
3
|
+
- Handle connection through proxy automatically using the `ENV['HTTP_PROXY']` variable thanks to [taganaka](https://github.com/taganaka).
|
|
4
|
+
|
|
1
5
|
# 2.3.2
|
|
2
6
|
|
|
3
7
|
- Fix an issue with vimeo opengraph urls. Fixes [#46](https://github.com/gottfrois/link_thumbnailer/pull/46)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: link_thumbnailer
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pierre-Louis Gottfrois
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2015-01-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -122,6 +122,7 @@ extensions: []
|
|
|
122
122
|
extra_rdoc_files: []
|
|
123
123
|
files:
|
|
124
124
|
- .gitignore
|
|
125
|
+
- .hound.yml
|
|
125
126
|
- .rspec
|
|
126
127
|
- .travis.yml
|
|
127
128
|
- CHANGELOG.md
|
|
@@ -229,7 +230,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
229
230
|
version: '0'
|
|
230
231
|
requirements: []
|
|
231
232
|
rubyforge_project:
|
|
232
|
-
rubygems_version: 2.
|
|
233
|
+
rubygems_version: 2.4.5
|
|
233
234
|
signing_key:
|
|
234
235
|
specification_version: 4
|
|
235
236
|
summary: Ruby gem ranking images from a given URL returning an object containing images
|
|
@@ -268,3 +269,4 @@ test_files:
|
|
|
268
269
|
- spec/scrapers/opengraph/base_spec.rb
|
|
269
270
|
- spec/spec_helper.rb
|
|
270
271
|
- spec/video_parser_spec.rb
|
|
272
|
+
has_rdoc:
|