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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'qa/chemlab-library-gitlab.gemspec')
-rw-r--r--qa/chemlab-library-gitlab.gemspec22
1 files changed, 22 insertions, 0 deletions
diff --git a/qa/chemlab-library-gitlab.gemspec b/qa/chemlab-library-gitlab.gemspec
new file mode 100644
index 00000000000..908aad01850
--- /dev/null
+++ b/qa/chemlab-library-gitlab.gemspec
@@ -0,0 +1,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