2021-08-09 05:22:41 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
$:.unshift(File.expand_path('lib', __dir__))
|
|
|
|
|
|
|
|
Gem::Specification.new do |spec|
|
|
|
|
spec.name = 'chemlab-library-gitlab'
|
2021-09-30 14:11:31 -04:00
|
|
|
spec.version = '0.3.0'
|
2021-08-09 05:22:41 -04:00
|
|
|
spec.authors = ['GitLab Quality']
|
|
|
|
spec.email = ['quality@gitlab.com']
|
|
|
|
|
|
|
|
spec.required_ruby_version = '>= 2.5' # rubocop:disable Gemspec/RequiredRubyVersion
|
|
|
|
|
|
|
|
spec.summary = 'Chemlab Page Libraries for GitLab'
|
|
|
|
spec.homepage = 'https://gitlab.com/'
|
|
|
|
spec.license = 'MIT'
|
|
|
|
|
|
|
|
spec.files = `git ls-files -- lib/*`.split("\n")
|
|
|
|
|
|
|
|
spec.require_paths = ['lib']
|
|
|
|
|
2021-09-30 14:11:31 -04:00
|
|
|
spec.add_runtime_dependency 'chemlab', '~> 0.9'
|
2021-11-10 13:12:35 -05:00
|
|
|
spec.add_runtime_dependency 'zeitwerk', '~> 2.4'
|
2021-08-09 05:22:41 -04:00
|
|
|
end
|