summaryrefslogtreecommitdiff
path: root/qa/chemlab-library-gitlab.gemspec
blob: 908aad01850b1e03ea43b41df549dec946d67391 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

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

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