Welcome to mirror list, hosted at ThFree Co, Russian Federation.

chemlab-library-gitlab.gemspec « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9af4a650d9887a005475aee0c04712405cfa95cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

$:.unshift(File.expand_path('lib', __dir__))

Gem::Specification.new do |spec|
  spec.name = 'chemlab-library-gitlab'
  spec.version = '0.3.0'
  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']

  spec.add_runtime_dependency 'chemlab', '~> 0.9'
  spec.add_runtime_dependency 'zeitwerk', '~> 2.4'
end