Sha256: b1f8486375415f26a59af7fa6803c0935a0f7b298049e14772622b93953f7010

Contents?: true

Size: 1.18 KB

Versions: 5

Compression:

Stored size: 1.18 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 = ">= #{File.read('.ruby-version').rstrip}"

  spec.add_runtime_dependency('prism', '>= 0.24.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-2.6.0 runger_style.gemspec
runger_style-2.5.0 runger_style.gemspec
runger_style-2.2.1 runger_style.gemspec
runger_style-2.2.0 runger_style.gemspec
runger_style-2.1.0 runger_style.gemspec