Sha256: 681dc6502403dc84179716352f24a66f0bb2cf15fd5fe57a27feb3e9d0f6b609

Contents?: true

Size: 1.16 KB

Versions: 1

Compression:

Stored size: 1.16 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/sideci/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_runtime_dependency "activesupport", "~> 5.0"
  spec.add_runtime_dependency "strong_json", "~> 0.5.0"
  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.4.0 goodcheck.gemspec