debian-mirror-gitlab/qa/chemlab-library-gitlab.gemspec

24 lines
642 B
Ruby
Raw Normal View History

2021-10-27 15:23:28 +05:30
# frozen_string_literal: true
$:.unshift(File.expand_path('lib', __dir__))
Gem::Specification.new do |spec|
spec.name = 'chemlab-library-gitlab'
2021-11-18 22:05:49 +05:30
spec.version = '0.3.0'
2021-10-27 15:23:28 +05:30
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-11-18 22:05:49 +05:30
spec.add_runtime_dependency 'chemlab', '~> 0.9'
2021-12-11 22:18:48 +05:30
spec.add_runtime_dependency 'zeitwerk', '~> 2.4'
2021-10-27 15:23:28 +05:30
end