-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport_engine.gemspec
More file actions
28 lines (22 loc) · 972 Bytes
/
support_engine.gemspec
File metadata and controls
28 lines (22 loc) · 972 Bytes
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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'support_engine/version'
Gem::Specification.new do |spec|
spec.name = 'support_engine'
spec.version = SupportEngine::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ['Maciej Mensfeld']
spec.email = %w[contact@coditsu.io]
spec.homepage = 'https://coditsu.io'
spec.summary = 'Shared libraries for Coditsu Quality Assurance tool'
spec.description = 'Shared libraries for Coditsu Quality Assurance tool'
spec.license = 'LGPL-3.0'
spec.required_ruby_version = '>= 3.4'
spec.add_dependency 'activesupport', '< 9'
spec.add_dependency 'logger'
spec.add_dependency 'zeitwerk'
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec)/}) }
spec.require_paths = %w[lib]
spec.metadata['rubygems_mfa_required'] = 'true'
end