taxpub 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/taxpub/version.rb +1 -1
  3. metadata +1 -2
  4. data/README.rdoc +0 -29
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8483945f3e3ce760f89271e2f09b6cdb75887766
4
- data.tar.gz: 2b697ef9a5bb87bd9bf522be5c0acb0cf4a62e77
3
+ metadata.gz: dabbeac40f881a87946b92a3abae7dce033f1f54
4
+ data.tar.gz: 49c487d7be0de79e2cff33ded7d3af23bf8b0a00
5
5
  SHA512:
6
- metadata.gz: a339a2fe4cb2eb53c4e37a73ca239363c27618622cf9ab693cdf0664d6a85d6c1985f5441b58fd058f1d304b386419670e4f2ecdcc298df2f24d5f5c7550d3f2
7
- data.tar.gz: '05096aab5b7b4db19eafe9c4d8cd7a780b77586a06142d4d25e3667ad985df8eaee0c97f12f5f074c0d4ef8b34caeae76d2fca260c2908f3155ef5241746f14c'
6
+ metadata.gz: 24df43c8b09d987c3b6361b1f894330782ada1332eb33557ac11f1fb5fb23310e43a06ca8d86dc5a85702f4f3c08f7514e6468d4e02c0560031b06042a6977a3
7
+ data.tar.gz: d6f2b13df87074fb81d06d8796bdfdda003a2534430964bec93ba6f9cc838533c04d3505275abee45a44ab354cca78ac09f24169ff2d81035b6b4df9f0bb3e9d
@@ -1,5 +1,5 @@
1
1
  class TaxPub
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
 
4
4
  def self.version
5
5
  VERSION
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: taxpub
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - David P. Shorthouse
@@ -87,7 +87,6 @@ executables: []
87
87
  extensions: []
88
88
  extra_rdoc_files: []
89
89
  files:
90
- - README.rdoc
91
90
  - lib/taxpub.rb
92
91
  - lib/taxpub/exceptions.rb
93
92
  - lib/taxpub/reference.rb
@@ -1,29 +0,0 @@
1
- = taxpub
2
-
3
- Ruby 2.4.1 gem to parse TaxPub documents like those produced by Pensoft Publishers, https://pensoft.net/.
4
-
5
- TaxPub Background: https://www.ncbi.nlm.nih.gov/books/NBK47081/
6
-
7
- == Usage
8
-
9
- > require "taxpub"
10
- > tp = TaxPub.new
11
- > tp.url = "https://tdwgproceedings.pensoft.net/article/19829/download/xml/"
12
- > tp.parse
13
- > tp.doi
14
-
15
- == Contributing to taxpub
16
-
17
- * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
18
- * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
19
- * Fork the project.
20
- * Start a feature/bugfix branch.
21
- * Commit and push until you are happy with your contribution.
22
- * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
23
- * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
24
-
25
- == Copyright
26
-
27
- Copyright (c) 2017 David Shorthouse. See LICENSE.txt for
28
- further details.
29
-