rubyBHL 0.3.0 → 0.3.1

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: f45ae0534cfb0d139e96fd1ea96d919b3f59c100c7444ac01ec48afd7d6df4b5
4
- data.tar.gz: e6b2226c62d548157bcd5f8b98784b320bb3662cab0f491504b1dcf399720e42
3
+ metadata.gz: eabc03da007ed28730298ac4cea7ed63e2d5255dc4d6fc537a3b2cdef79557d4
4
+ data.tar.gz: 73b8f285bc13c69d79ff02b207947fed79bb1e28416f7101329d396453b63268
5
5
  SHA512:
6
- metadata.gz: 8a229d4c2408e1bc75c744f38f847e3296a984d405604f23a61424c57038b187d81972d702b845cd74b410df4988260d57dedb1ac557b0af75a4769a47a5db5d
7
- data.tar.gz: c5fa4c22b8a04dcce27df4d42c1432ccf15589a7257f72ba32f26eb26338623a0b864864dd99a0d32384b2ef80eafb5f8a55c8a67b3069789785343da00b02a0
6
+ metadata.gz: 7243658fa4de8716092dd99d80ecddf9a1948261540653c52898d677728f03133c86f891312a10cc12cb7472b774f60ef6d89484044fc5896a0793c3af0a9f52
7
+ data.tar.gz: 63b2671ce69b5caf5875677bb39b9c142c0426bce623fc18f542c04d3a8a4c437cbd7794c5b3b185a7bece6f4f15588fc5a3af3079396ba56f1f953ec6f23638
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rubyBHL (0.3.0)
4
+ rubyBHL (0.3.1)
5
5
  dotenv (~> 2.7)
6
6
  json (~> 2.2)
7
7
 
@@ -11,15 +11,15 @@ GEM
11
11
  awesome_print (1.8.0)
12
12
  byebug (11.0.1)
13
13
  diff-lcs (1.3)
14
- dotenv (2.7.2)
14
+ dotenv (2.7.5)
15
15
  git (1.5.0)
16
16
  json (2.2.0)
17
- rake (12.3.2)
17
+ rake (12.3.3)
18
18
  rspec (3.8.0)
19
19
  rspec-core (~> 3.8.0)
20
20
  rspec-expectations (~> 3.8.0)
21
21
  rspec-mocks (~> 3.8.0)
22
- rspec-core (3.8.1)
22
+ rspec-core (3.8.2)
23
23
  rspec-support (~> 3.8.0)
24
24
  rspec-expectations (3.8.4)
25
25
  diff-lcs (>= 1.2.0, < 2.0)
@@ -1,6 +1,6 @@
1
1
  = RubyBHL
2
2
 
3
- A simple Ruby wrapper to {version 2.5.x of the BHL API}[http://www.biodiversitylibrary.org/api2/docs/docs.html].
3
+ A simple Ruby wrapper to {version 3.x of the BHL API}[https://www.biodiversitylibrary.org/docs/api3.html].
4
4
 
5
5
  == Really quick start
6
6
 
@@ -43,7 +43,8 @@ class RubyBHL
43
43
  'creatorid' => [:GetAuthorParts, :GetAuthorTitles],
44
44
  'type' => [:GetItemByIdentifier, :GetPartByIdentifier, :GetTitleByIdentifier],
45
45
  'value' => [:GetItemByIdentifier, :GetPartByIdentifier, :GetTitleByIdentifier],
46
- 'itemid' => [:GetItemMetadata, :GetItemPages, :GetItemParts],
46
+ 'id' => [:GetItemMetadata],
47
+ 'itemid' => [:GetItemPages, :GetItemParts],
47
48
  'pageid' => [:GetPageMetadata, :GetPageNames, :GetPageOcrText, :GetPartBibTeX],
48
49
  'partid' => [:GetPartBibTeX, :GetPartEndNote, :GetPartMetadata, :GetPartNames],
49
50
  'subject' => [:GetSubjectParts, :GetSubjectTitles, :SubjectSearch],
@@ -1,3 +1,3 @@
1
1
  class RubyBHL
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
@@ -9,7 +9,7 @@ Gem::Specification.new do |gem|
9
9
  gem.description = %q{RubyBHL is a simple but flexible request/response wrapper for the Biodiversity Heritage Libary API. It includes (some) validation for request formatting. It has excellent unit-test coverage.}
10
10
  gem.summary = %q{RubyBHL is a simple request/response wrapper for the Biodiversity Heritage Libary API.}
11
11
  gem.homepage = 'http://github.com/SpeciesFileGroup/rubyBHL'
12
- gem.license = "University of Illinois/NCSA Open Source License (NCSA)"
12
+ gem.license = "NCSA"
13
13
 
14
14
  gem.files = `git ls-files`.split($/) # be sure to commit!
15
15
  gem.test_files = gem.files.grep(%r{^(spec|features)/})
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubyBHL
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matt Yoder
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-06-18 00:00:00.000000000 Z
11
+ date: 2019-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -152,7 +152,7 @@ files:
152
152
  - spec/spec_helper.rb
153
153
  homepage: http://github.com/SpeciesFileGroup/rubyBHL
154
154
  licenses:
155
- - University of Illinois/NCSA Open Source License (NCSA)
155
+ - NCSA
156
156
  metadata: {}
157
157
  post_install_message:
158
158
  rdoc_options: []