-
Notifications
You must be signed in to change notification settings - Fork 1
/
crapi.gemspec
31 lines (24 loc) · 1.09 KB
/
crapi.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
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'crapi/version'
Gem::Specification.new do |spec|
spec.required_ruby_version = ['>= 3.0', '< 3.2']
spec.name = 'crapi'
spec.version = CrAPI::VERSION
spec.authors = ['Nestor Custodio']
spec.email = ['[email protected]']
spec.summary = 'A simple API client with built-in segment/header proxy support.'
spec.homepage = 'https://github.com/nestor-custodio/crapi'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject { |filename| filename.start_with? 'test/' }
spec.executables = []
spec.require_paths = ['lib']
spec.metadata['rubygems_mfa_required'] = 'true'
spec.add_dependency 'activesupport', ['>= 6.0', '< 7.1']
spec.add_development_dependency 'bundler', '~> 2'
spec.add_development_dependency 'rspec', '~> 3'
spec.add_development_dependency 'rspec_junit_formatter'
spec.add_development_dependency 'rubocop'
spec.add_development_dependency 'webmock'
spec.add_development_dependency 'yard'
end