checkr/checkr-ruby

View on GitHub
checkr-official.gemspec

Summary

Maintainability
Test Coverage
$:.unshift(File.join(File.dirname(__FILE__), 'lib'))

require 'checkr/version'

Gem::Specification.new do |s|
  s.name = 'checkr-official'
  s.summary = 'Ruby bindings for Checkr API'
  s.description = 'Checkr - Background check platform for the New World of Work. See https://docs.checkr.com for details.'
  s.homepage = 'https://checkr.com/'
  s.authors = ['Checkr Engineering Team']
  s.email = ['eng@checkr.com']
  s.version = Checkr::VERSION
  s.license = 'Apache-2.0'

  s.required_ruby_version = '>= 1.9.3'

  s.add_dependency('rest-client', '>= 1.4')
  s.add_dependency('json', '>= 1.8.1')

  s.add_development_dependency('mocha', '~> 0.13.2')
  s.add_development_dependency('shoulda', '~> 3.4.0')
  s.add_development_dependency('activesupport', '~> 4.2.6')
  s.add_development_dependency('bump', '0.5.2')
  s.add_development_dependency('rake', '12.3.3')
  s.add_development_dependency('test-unit')

  s.files = `git ls-files`.split("\n")
  s.test_files    = `git ls-files -- test/*`.split("\n")
  s.executables   = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
  s.require_paths = ['lib']
end