forked from joshuaylee/eligible-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheligible.gemspec
25 lines (21 loc) · 1.08 KB
/
eligible.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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'eligible/version'
Gem::Specification.new do |gem|
gem.name = 'eligible'
gem.version = Eligible::VERSION
gem.authors = ['Katelyn Gleaon', 'Rodrigo Dominguez', 'Aaron Bedra']
gem.email = ['k@eligible.com', 'rod@eligible.com', 'abedra@eligible.com']
gem.description = 'Eligible is a developer-friendly way to process health care eligibility checks. Learn more at https://eligible.com'
gem.summary = 'Ruby wrapper for the Eligible API'
gem.homepage = 'https://github.com/eligible/eligible-ruby'
gem.license = 'MIT'
gem.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
gem.require_paths = ['lib']
gem.add_dependency('rest-client', '~> 2.0.0')
gem.add_dependency('multi_json', '~> 1.7')
gem.add_development_dependency('rake', '~> 12.0')
gem.add_development_dependency('rspec', '~> 3.4')
gem.add_development_dependency('simplecov', '~> 0.11')
end