-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
karafka-web.gemspec
53 lines (43 loc) · 1.84 KB
/
karafka-web.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
45
46
47
48
49
50
51
52
53
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'karafka/web/version'
Gem::Specification.new do |spec|
spec.name = 'karafka-web'
spec.version = ::Karafka::Web::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ['Maciej Mensfeld']
spec.email = %w[[email protected]]
spec.homepage = 'https://karafka.io'
spec.summary = 'Karafka ecosystem Web UI interface'
spec.description = 'Karafka ecosystem plug-and-play Web UI'
spec.licenses = %w[LGPL-3.0-only Commercial]
spec.add_dependency 'erubi', '~> 1.4'
spec.add_dependency 'karafka', '>= 2.4.10', '< 2.5.0'
spec.add_dependency 'karafka-core', '>= 2.4.0', '< 2.5.0'
spec.add_dependency 'roda', '~> 3.68', '>= 3.69'
spec.add_dependency 'tilt', '~> 2.0'
spec.add_development_dependency 'rackup', '~> 0.2'
spec.required_ruby_version = '>= 3.1.0'
if $PROGRAM_NAME.end_with?('gem')
spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
end
spec.cert_chain = %w[certs/cert.pem]
spec.executables = %w[karafka-web]
spec.require_paths = %w[lib]
spec.files = `git ls-files -z`
.split("\x0")
.reject { |f| f.match(%r{^(spec)/}) }
.reject { |f| f.include?('.github') }
.reject { |f| f.start_with?('.') }
.reject { |f| f.end_with?('.map') }
spec.metadata = {
'funding_uri' => 'https://karafka.io/#become-pro',
'homepage_uri' => 'https://karafka.io',
'changelog_uri' => 'https://karafka.io/docs/Changelog-Karafka-Web-UI',
'bug_tracker_uri' => 'https://github.com/karafka/karafka-web/issues',
'source_code_uri' => 'https://github.com/karafka/karafka-web',
'documentation_uri' => 'https://karafka.io/docs',
'rubygems_mfa_required' => 'true'
}
end