File: rubocop-packaging.gemspec

package info (click to toggle)
ruby-rubocop-packaging 0.5.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 220 kB
  • sloc: ruby: 739; sh: 4; makefile: 4
file content (32 lines) | stat: -rw-r--r-- 1,298 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# frozen_string_literal: true

require_relative "lib/rubocop/packaging/version"

Gem::Specification.new do |spec|
  spec.name          = "rubocop-packaging"
  spec.version       = RuboCop::Packaging::VERSION
  spec.authors       = ["Utkarsh Gupta"]
  spec.email         = ["utkarsh@debian.org"]
  spec.license       = "MIT"
  spec.homepage      = "https://github.com/utkarsh2102/rubocop-packaging"
  spec.summary       = "Automatic downstream compatability checking tool for Ruby code"
  spec.description   = <<~DESCRIPTION
    A collection of RuboCop cops to check for downstream compatability issues in the
    Ruby code.
  DESCRIPTION

  spec.metadata["homepage_uri"]    = spec.homepage
  spec.metadata["source_code_uri"] = "https://github.com/utkarsh2102/rubocop-packaging"

  spec.files         = Dir["config/default.yml", "lib/**/*", "LICENSE", "README.md"]
  spec.require_paths = ["lib"]

  spec.required_ruby_version = Gem::Requirement.new(">= 2.4.0")

  spec.add_development_dependency   "bump", "~> 0.8"
  spec.add_development_dependency   "pry", "~> 0.13"
  spec.add_development_dependency   "rake", "~> 13.0"
  spec.add_development_dependency   "rspec", "~> 3.0"
  spec.add_development_dependency   "yard", "~> 0.9"
  spec.add_runtime_dependency       "rubocop", ">= 0.89", "< 2.0"
end