Sha256: 98d8a8e324e37df50f5d8a0fa58cc6e55b8fb38bcc3bf8ca89f9445f9b010161

Contents?: true

Size: 1.24 KB

Versions: 1

Compression:

Stored size: 1.24 KB

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "goodcheck/version"

Gem::Specification.new do |spec|
  spec.name          = "goodcheck"
  spec.version       = Goodcheck::VERSION
  spec.authors       = ["Soutaro Matsumoto"]
  spec.email         = ["matsumoto@soutaro.com"]

  spec.summary       = "Regexp based customizable linter"
  spec.description   = "Regexp based customizable linter"
  spec.homepage      = "https://github.com/sider/goodcheck"

  spec.files         = `git ls-files -z`.split("\x0").reject do |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.required_ruby_version = '>= 2.4.0'

  spec.add_development_dependency "bundler", ">= 1.16"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "minitest", "~> 5.0"
  spec.add_development_dependency "minitest-reporters", "~> 1.3.6"

  spec.add_runtime_dependency "activesupport", ">= 4.0", "< 6.0"
  spec.add_runtime_dependency "strong_json", "~> 1.0.1"
  spec.add_runtime_dependency "rainbow", "~> 3.0.0"
  spec.add_runtime_dependency "httpclient", "~> 2.8.3"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
goodcheck-1.7.1 goodcheck.gemspec