Sha256: 5c71ce602375c61a5d821dba083de74d948e78ec0661d0d62698c0cd4161d363
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/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_runtime_dependency "activesupport", "~> 5.0" spec.add_runtime_dependency "strong_json", "~> 0.7.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.4.1 | goodcheck.gemspec |