0.0
No release in over 3 years
checkerberry is a low-level wrapper around the GNverifier API for scientific name verification.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 2.1, >= 2.1.4
~> 13.0, >= 13.0.1
~> 3.3, >= 3.3.6
~> 3.3, >= 3.3.6
~> 6.0
~> 3.18

Runtime

 Project Readme

Checkerberry

Checkerberry is a Ruby wrapper on the GNverifier API. Code follows the spirit/approach of the Gem serrano, and indeed much of the wrapping utility is copied 1:1 from that repo, thanks @sckott.

Installation

Add this line to your application's Gemfile:

gem 'checkerberry'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install checkerberry

Usage

Verify scientific names

Verify a single scientific name:

Checkerberry.verify('Homo sapiens')

Verify multiple scientific names:

Checkerberry.verify(['Homo sapiens', 'Mus musculus'])

Verify with additional options:

Checkerberry.verify('Homo sapiens', data_sources: [1, 11], with_stats: true)

Search for scientific names

Search for a species:

Checkerberry.search(name_string: "Homo sapiens", genus: 'Homo', species: 'sapiens')

Search for a species within a parent taxon:

Checkerberry.search(parent_taxon: "Plantae", genus: 'Agathis', species: 'montana')
Checkerberry.search(parent_taxon: "Animalia", genus: 'Agathis', species: 'montana')

Search for a species verified by specific data sources:

Checkerberry.search(name_string: "Homo sapiens", genus: 'Homo', species: 'sapiens', data_sources: 1)
Checkerberry.search(name_string: "Homo sapiens", genus: 'Homo', species: 'sapiens', data_sources: [1, 3])

Get data sources

Get list of all data sources:

Checkerberry.data_sources

Get a specific data source by ID:

Checkerberry.data_source(1)

Ping service

Check if the GNverifier service is up

Checkerberry.ping
pong

Get version

Get the GNVerifier API version information:

Checkerberry.version

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake test to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, update the CHANGELOG.md, and then run bundle exec rake release, which will create a git tag for the version, push git commits and the created tag, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/SpeciesFileGroup/checkerberry. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

The gem is available as open source under the terms of the MIT license. You can learn more about the MIT license on Wikipedia and compare it with other open source licenses at the Open Source Initiative.

Code of Conduct

Everyone interacting in the Checkerberry project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.