-
Notifications
You must be signed in to change notification settings - Fork 4
/
api_client_builder.gemspec
25 lines (20 loc) · 1.08 KB
/
api_client_builder.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
require File.expand_path('lib/api_client_builder/version', __dir__)
Gem::Specification.new do |gem|
gem.name = 'api_client_builder'
gem.summary = 'API Client Builder provides an easy to use interface for creating HTTP api clients'
gem.description = 'API Client Builder provides an easy to use interface for creating HTTP api clients'
gem.authors = ['Jayce Higgins']
gem.email = ['[email protected]', '[email protected]']
gem.homepage = 'https://github.com/instructure/api-client-builder'
gem.version = APIClientBuilder::VERSION
gem.required_ruby_version = '>= 2.7'
gem.license = 'MIT'
gem.add_development_dependency 'pry'
gem.add_development_dependency 'rspec', '~> 3.7'
gem.add_development_dependency 'rubocop', '~> 0.57.2'
gem.add_development_dependency 'simplecov', '~> 0'
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
gem.require_paths = ['lib']
end