Sha256: e10817aaa5a26bf1d29a1e19345e6b82111792a54bb698f85fc0be9f27702aa7

Contents?: true

Size: 1.26 KB

Versions: 3

Compression:

Stored size: 1.26 KB

Contents

# frozen_string_literal: true

require_relative 'lib/runger_style/version'

Gem::Specification.new do |spec|
  spec.name          = 'runger_style'
  spec.version       = RungerStyle::VERSION
  spec.authors       = ['David Runger']
  spec.email         = ['davidjrunger@gmail.com']

  spec.summary       = 'Shared rubocop rules for the preferred Ruby coding style of @davidrunger'
  spec.description   = 'Shared rubocop rules for the preferred Ruby coding style of @davidrunger'
  spec.homepage      = 'https://github.com/davidrunger/runger_style'
  spec.license       = 'MIT'

  spec.metadata['rubygems_mfa_required'] = 'true'
  spec.metadata['homepage_uri'] = spec.homepage
  spec.metadata['source_code_uri'] = 'https://github.com/davidrunger/runger_style'
  spec.metadata['changelog_uri'] =
    'https://github.com/davidrunger/runger_style/blob/main/CHANGELOG.md'

  spec.files =
    `git ls-files -z`.split("\x0").reject do |f|
      f.match(%r{^(test|spec|features)/})
    end
  spec.require_paths = ['lib']

  required_ruby_version = File.read('.ruby-version').rstrip.sub(/\A(\d+\.\d+)\.\d+\z/, '\1.0')
  spec.required_ruby_version = ">= #{required_ruby_version}"

  spec.add_runtime_dependency('prism', '>= 0.24.0')
  spec.add_runtime_dependency('rubocop', '>= 1.38.0', '< 2')
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
runger_style-2.11.0 runger_style.gemspec
runger_style-2.10.0 runger_style.gemspec
runger_style-2.9.0 runger_style.gemspec