Sha256: e36934c874edbaab36d0c75625fdcfb4faf7e086bd1929cd106b42d0301fc586
Contents?: true
Size: 980 Bytes
Versions: 5
Compression:
Stored size: 980 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.6.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.44.1" spec.add_dependency "rubocop-performance", "1.15.2" # not semver: first three are lsp protocol version, last is patch spec.add_dependency "language_server-protocol", "~> 3.17.0.2" end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
standard-1.24.3 | standard.gemspec |
standard-1.24.2 | standard.gemspec |
standard-1.24.1 | standard.gemspec |
standard-1.24.0 | standard.gemspec |
standard-1.23.0 | standard.gemspec |