Sha256: ea5bb2b6137da6f032b88bd938f5a6cda3464215671a24a6315e64d2d6b12082
Contents?: true
Size: 1.28 KB
Versions: 2
Compression:
Stored size: 1.28 KB
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/standardrb/standard" spec.metadata["homepage_uri"] = spec.homepage spec.metadata["source_code_uri"] = spec.homepage spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md" 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.metadata["rubygems_mfa_required"] = "true" spec.add_dependency "rubocop", "~> 1.59.0" spec.add_dependency "lint_roller", "~> 1.0" spec.add_dependency "standard-custom", "~> 1.0.0" spec.add_dependency "standard-performance", "~> 1.3" # 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
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
getargv-0.3.3-universal-darwin | vendor/bundle/ruby/3.3.0/gems/standard-1.33.0/standard.gemspec |
standard-1.33.0 | standard.gemspec |