I am integrating the digicert library into a project (thank you for this!) and found that Digicert::Organization.first (found in the readme) returns a NoMethodError. In order to get the first org, it looks like you actually have to use Digicert::Organization.all.first so I updated this part of the README.
I am integrating the
digicert
library into a project (thank you for this!) and found thatDigicert::Organization.first
(found in the readme) returns aNoMethodError
. In order to get the first org, it looks like you actually have to useDigicert::Organization.all.first
so I updated this part of the README.