summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Gemfile.lock15
-rw-r--r--lib/spandx/gitlab.rb2
-rw-r--r--spandx-gitlab.gemspec2
3 files changed, 18 insertions, 1 deletions
diff --git a/Gemfile.lock b/Gemfile.lock
index 25a5e1b..d4ca53b 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -2,11 +2,19 @@ PATH
remote: .
specs:
spandx-gitlab (0.1.0)
+ spandx (~> 0.1)
GEM
remote: https://rubygems.org/
specs:
+ addressable (2.7.0)
+ public_suffix (>= 2.0.2, < 5.0)
diff-lcs (1.3)
+ mini_portile2 (2.4.0)
+ net-hippie (0.3.2)
+ nokogiri (1.10.9)
+ mini_portile2 (~> 2.4.0)
+ public_suffix (4.0.4)
rake (12.3.3)
rspec (3.9.0)
rspec-core (~> 3.9.0)
@@ -21,6 +29,13 @@ GEM
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-support (3.9.2)
+ spandx (0.11.0)
+ addressable (~> 2.7)
+ bundler (>= 1.16, < 3.0.0)
+ net-hippie (~> 0.3)
+ nokogiri (~> 1.10)
+ thor
+ thor (1.0.1)
PLATFORMS
ruby
diff --git a/lib/spandx/gitlab.rb b/lib/spandx/gitlab.rb
index ec464ec..e5b2c21 100644
--- a/lib/spandx/gitlab.rb
+++ b/lib/spandx/gitlab.rb
@@ -1,8 +1,8 @@
+require 'spandx'
require "spandx/gitlab/version"
module Spandx
module Gitlab
class Error < StandardError; end
- # Your code goes here...
end
end
diff --git a/spandx-gitlab.gemspec b/spandx-gitlab.gemspec
index 94cca53..22720dd 100644
--- a/spandx-gitlab.gemspec
+++ b/spandx-gitlab.gemspec
@@ -24,4 +24,6 @@ Gem::Specification.new do |spec|
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
+
+ spec.add_dependency 'spandx', '~> 0.1'
end