diffbot 0.1.20 → 0.1.21

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9703ae5a75cb4b20b17c380923492579b614fee7d18ea782fb366cba66b3801a
4
- data.tar.gz: 39c660db9e443cda6ee77cff72400ad571765c79cc4a66fbcd95d86018884799
3
+ metadata.gz: a1fe25feca9bc5350631182a357a82db7a376bf03637d06335a858330995264a
4
+ data.tar.gz: b71ea77cbdf1b8b60c557390fd9631121d17c9c9c89f52ce26254bada5242301
5
5
  SHA512:
6
- metadata.gz: 3e5da8e1c2169135bc7541587d01310d5e054cd4ca40316fe9900684f955acd6e562b73bc4e705e66658c43b53429914dbc4cc2589f13c2c7ffd8e7a6815f51b
7
- data.tar.gz: d907c0505340b169c94c51b6ee764c07d99343dd6673c2f1125bc6e05d7516578bf199dc26bb921a783fe1ae065099a1b493441f429dab3e19cdd828d9a4f4b6
6
+ metadata.gz: 7b8cb305db5e32fbf8194a3a7a2faa15162a12f6acb45c37d78fa3b76d67fa9e652a12745cded6ca954f82def06a5c66ee4f430a21042d81d2d7861d71640a41
7
+ data.tar.gz: f60bb8e0c07f3e550f0369cb2faa8734daf9fb58a416bbf18644d03b433ff499e14f183b1827fa105e3315e4bff198a67e14897eb8969c96ce943a2038644525
data/.gitignore CHANGED
@@ -1,3 +1,4 @@
1
1
  /pkg
2
2
  .rvm*
3
3
  coverage
4
+ .ruby-version
data/.travis.yml CHANGED
@@ -1,8 +1,8 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.1.3
4
- - 2.3.3
5
- - 2.4.1
3
+ - 2.3.8
4
+ - 2.4.6
5
+ - 2.6.2
6
6
  env:
7
7
  - RUBYOPT="$RUBYOPT -Itest"
8
8
  before_install:
data/Gemfile.lock CHANGED
@@ -1,10 +1,10 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- diffbot (0.1.20)
4
+ diffbot (0.1.21)
5
5
  excon
6
6
  hashie
7
- nokogiri (~> 1.8.1)
7
+ nokogiri (>= 1.8.1, < 2)
8
8
  yajl-ruby
9
9
 
10
10
  GEM
@@ -14,14 +14,14 @@ GEM
14
14
  simplecov (>= 0.7.1, < 1.0.0)
15
15
  coderay (1.1.0)
16
16
  docile (1.1.5)
17
- excon (0.60.0)
18
- hashie (3.5.7)
17
+ excon (0.64.0)
18
+ hashie (3.6.0)
19
19
  method_source (0.8.2)
20
- mini_portile2 (2.3.0)
20
+ mini_portile2 (2.4.0)
21
21
  minitest (4.7.0)
22
22
  multi_json (1.10.1)
23
- nokogiri (1.8.2)
24
- mini_portile2 (~> 2.3.0)
23
+ nokogiri (1.10.3)
24
+ mini_portile2 (~> 2.4.0)
25
25
  pry (0.10.1)
26
26
  coderay (~> 1.1.0)
27
27
  method_source (~> 0.8.1)
@@ -33,7 +33,7 @@ GEM
33
33
  simplecov-html (~> 0.8.0)
34
34
  simplecov-html (0.8.0)
35
35
  slop (3.6.0)
36
- yajl-ruby (1.3.1)
36
+ yajl-ruby (1.4.1)
37
37
 
38
38
  PLATFORMS
39
39
  ruby
@@ -47,4 +47,4 @@ DEPENDENCIES
47
47
  rake
48
48
 
49
49
  BUNDLED WITH
50
- 1.16.1
50
+ 1.17.3
data/README.md CHANGED
@@ -3,7 +3,6 @@
3
3
  This is a ruby client for the [Diffbot](http://diffbot.com) API.
4
4
 
5
5
  [![Gem Version](https://badge.fury.io/rb/diffbot.svg)](http://badge.fury.io/rb/diffbot)
6
- [![Dependency Status](https://gemnasium.com/greshny/diffbot.svg)](https://gemnasium.com/greshny/diffbot)
7
6
  [![Build Status](https://travis-ci.org/greshny/diffbot.png?branch=master)](https://travis-ci.org/greshny/diffbot)
8
7
  [![Code Climate](https://codeclimate.com/github/greshny/diffbot/badges/gpa.svg)](https://codeclimate.com/github/greshny/diffbot)
9
8
  [![Test Coverage](https://codeclimate.com/github/greshny/diffbot/badges/coverage.svg)](https://codeclimate.com/github/greshny/diffbot)
data/diffbot.gemspec CHANGED
@@ -1,18 +1,17 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "diffbot"
3
- s.version = "0.1.20"
3
+ s.version = "0.1.21"
4
4
  s.description = "Diffbot provides a concise API for analyzing and extracting semantic information from web pages using Diffbot (http://www.diffbot.com)."
5
5
  s.summary = "Ruby interface to the Diffbot API "
6
6
  s.authors = ["Nicolas Sanguinetti", "Roman Greshny"]
7
7
  s.email = ["hi@nicolassanguinetti.info", "greshny@gmail.com"]
8
8
  s.homepage = "http://github.com/greshny/diffbot"
9
- s.has_rdoc = false
10
9
  s.files = `git ls-files`.split "\n"
11
10
  s.platform = Gem::Platform::RUBY
12
11
 
13
12
  s.add_dependency("excon")
14
13
  s.add_dependency("yajl-ruby")
15
- s.add_dependency("nokogiri", "~> 1.8.1")
14
+ s.add_dependency("nokogiri", ">= 1.8.1", "< 2")
16
15
  s.add_dependency("hashie")
17
16
 
18
17
  s.add_development_dependency("bundler")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: diffbot
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.20
4
+ version: 0.1.21
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nicolas Sanguinetti
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-02-25 00:00:00.000000000 Z
12
+ date: 2019-05-06 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: excon
@@ -43,16 +43,22 @@ dependencies:
43
43
  name: nokogiri
44
44
  requirement: !ruby/object:Gem::Requirement
45
45
  requirements:
46
- - - "~>"
46
+ - - ">="
47
47
  - !ruby/object:Gem::Version
48
48
  version: 1.8.1
49
+ - - "<"
50
+ - !ruby/object:Gem::Version
51
+ version: '2'
49
52
  type: :runtime
50
53
  prerelease: false
51
54
  version_requirements: !ruby/object:Gem::Requirement
52
55
  requirements:
53
- - - "~>"
56
+ - - ">="
54
57
  - !ruby/object:Gem::Version
55
58
  version: 1.8.1
59
+ - - "<"
60
+ - !ruby/object:Gem::Version
61
+ version: '2'
56
62
  - !ruby/object:Gem::Dependency
57
63
  name: hashie
58
64
  requirement: !ruby/object:Gem::Requirement
@@ -160,8 +166,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
160
166
  - !ruby/object:Gem::Version
161
167
  version: '0'
162
168
  requirements: []
163
- rubyforge_project:
164
- rubygems_version: 2.7.6
169
+ rubygems_version: 3.0.3
165
170
  signing_key:
166
171
  specification_version: 4
167
172
  summary: Ruby interface to the Diffbot API