Sha256: 56e95d7151e43f20a8457ced68fa20f4b76506bb554027bd8dadeebea09d968f
Contents?: true
Size: 1.67 KB
Versions: 12
Compression:
Stored size: 1.67 KB
Contents
require_relative "lib/gitlab/dangerfiles/version" Gem::Specification.new do |spec| spec.name = "gitlab-dangerfiles" spec.version = Gitlab::Dangerfiles::VERSION spec.authors = ["GitLab"] spec.email = ["gitlab_rubygems@gitlab.com"] spec.summary = %q{This gem provides common Dangerfile and plugins for GitLab projects.} spec.description = %q{This gem provides common Dangerfile and plugins for GitLab projects.} spec.homepage = "https://gitlab.com/gitlab-org/gitlab-dangerfiles" spec.license = "MIT" spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0") spec.metadata["allowed_push_host"] = "https://rubygems.org" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = "https://gitlab.com/gitlab-org/gitlab-dangerfiles" spec.metadata["changelog_uri"] = "https://gitlab.com/gitlab-org/gitlab-dangerfiles/-/releases" # Specify which files should be added to the gem when it is released. # The `git ls-files -z` loads the files in the RubyGem that have been added into git. spec.files = Dir.chdir(File.expand_path("..", __FILE__)) do `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } end spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_dependency "danger-gitlab", ">= 8.0.0" spec.add_dependency "danger", ">= 8.3.1" spec.add_development_dependency "rspec", "~> 3.0" spec.add_development_dependency "rspec-parameterized" spec.add_development_dependency "timecop" spec.add_development_dependency "webmock" spec.add_development_dependency "climate_control" spec.add_development_dependency "rufo" end
Version data entries
12 entries across 12 versions & 1 rubygems