-
Notifications
You must be signed in to change notification settings - Fork 1
/
pisoni.gemspec
44 lines (34 loc) · 1.51 KB
/
pisoni.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
32
33
34
35
36
37
38
39
40
41
42
43
44
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require '3scale/core/version'
Gem::Specification.new do |s|
s.name = 'pisoni'
s.version = ThreeScale::Core::VERSION
s.date = Time.now.utc.strftime('%Y-%m-%d')
s.platform = Gem::Platform::RUBY
s.authors = ['Alejandro Martinez Ruiz']
s.email = %w[alex@3scale.net]
s.homepage = 'https://github.com/3scale/pisoni'
s.summary = 'Client for the Apisonator internal API for model data'
s.description = 'Client for the Apisonator internal API for model data.'
s.license = 'Apache-2.0'
# faraday v2.9.0 removes support for Ruby 2.7, see https://github.com/lostisland/faraday/releases/tag/v2.9.0
s.add_runtime_dependency 'faraday', '~> 2.0', '<= 2.9'
s.add_runtime_dependency 'json', '~> 2.7', '>= 2.7.1'
s.add_runtime_dependency 'injectedlogger', '0.0.13'
s.add_runtime_dependency 'faraday-net_http_persistent', '~> 2.1'
s.add_development_dependency 'rake', '~> 13.1'
s.files = `git ls-files`.split($/).reject do |f| [
%r{^\.[^\/]},
%r{^script/},
%r{^docker/},
%r{^mk/},
].any? { |r| r.match f }
end
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.rdoc_options = ["--charset=UTF-8"]
s.required_ruby_version = '>= 2.6.0'
end