-
Notifications
You must be signed in to change notification settings - Fork 22
/
checkr-official.gemspec
31 lines (25 loc) · 1.09 KB
/
checkr-official.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
$:.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 = ['[email protected]']
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