Sha256: 5172c9674d14da0e1a20ec8ec8fdb230f26a864811d3c64ada31229472ffed3e

Contents?: true

Size: 1.1 KB

Versions: 5

Compression:

Stored size: 1.1 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/master/CHANGELOG.md'

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

  spec.required_ruby_version = '>= 3.3.0'

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

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
runger_style-1.4.0 runger_style.gemspec
runger_style-1.3.0 runger_style.gemspec
runger_style-1.2.0 runger_style.gemspec
runger_style-1.1.0 runger_style.gemspec
runger_style-1.0.0 runger_style.gemspec