Sha256: 55d57dde638f8be4889f332d8c3cf8cf0b7bd45a6719c46e8f5a7b15c78a7ea5

Contents?: true

Size: 1.6 KB

Versions: 3

Compression:

Stored size: 1.6 KB

Contents

require_relative "lib/gitlab/dangerfiles/version"

Gem::Specification.new do |spec|
  spec.name = "gitlab-dangerfiles"
  spec.version = Gitlab::Dangerfiles::VERSION
  spec.authors = ["Rémy Coutable"]
  spec.email = ["remy@rymai.me"]

  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"

  # 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"

  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

3 entries across 3 versions & 1 rubygems

Version Path
gitlab-dangerfiles-1.1.1 gitlab-dangerfiles.gemspec
gitlab-dangerfiles-1.1.0 gitlab-dangerfiles.gemspec
gitlab-dangerfiles-1.0.0 gitlab-dangerfiles.gemspec