Checkr is the gem I have built recently and code is hosted in github and gem is hosted in rubygems.org. If we install it using bundler, specifying gem 'checkr' in Gemfile, it is not loading. We get this error:
uninitialized constant Checkr (NameError)
But installing it from github like this in Gemfile works fine, I guess.
gem 'checkr', git: 'https://github.com/vijendra/checkr.git'
Am I missing some thing in rubygems.org settings?