Sha256: b329bc3cc84c71b46fe23465faacba24e956a57084c37b1323770d890195511d
Contents?: true
Size: 1.2 KB
Versions: 1
Compression:
Stored size: 1.2 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 = Gem::Requirement.new(">= #{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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
runger_style-2.0.0 | runger_style.gemspec |