Sha256: 5149d59b31d9dc33a1144cc824cb676385a11f29f62a7ed04210374bccef88e5

Contents?: true

Size: 846 Bytes

Versions: 2

Compression:

Stored size: 846 Bytes

Contents

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

Gem::Specification.new do |spec|
  spec.name = "standard"
  spec.version = Standard::VERSION
  spec.authors = ["Justin Searls"]
  spec.email = ["searls@gmail.com"]
  spec.required_ruby_version = ">= 2.4.0"

  spec.summary = "Ruby Style Guide, with linter & automatic code fixer"
  spec.homepage = "https://github.com/testdouble/standard"

  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 "rubocop", "1.10.0"
  spec.add_dependency "rubocop-performance", "1.9.2"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
standard-1.0.0 standard.gemspec
standard-0.13.0 standard.gemspec