Sha256: 1cdc7b4f526a4cde52225655cf1fe8e40c5de988f6119d6fd496448f2b260704
Contents?: true
Size: 1.35 KB
Versions: 1
Compression:
Stored size: 1.35 KB
Contents
# encoding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'wonder/ruby/style/version' Gem::Specification.new do |spec| spec.name = 'wonder-ruby-style' spec.version = Wonder::Ruby::Style::VERSION spec.authors = ['Wonder Sistemas'] spec.email = ['wonder@wonder.com.br'] spec.summary = 'Compartilhamento de configurações do Rubocop entre os projetos de Ruby.' spec.homepage = 'https://github.com/wondersistemas/wonder-ruby-style' spec.license = 'MIT' spec.required_ruby_version = '>= 2.7.0' if spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = 'https://rubygems.org' else raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.' end spec.files = `git ls-files -z`.split("\x0").reject do |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.add_dependency 'rubocop', Wonder::Ruby::Style::VERSION spec.add_dependency 'rubocop-rspec' spec.add_dependency 'rubocop-rails' spec.add_dependency 'rubocop-performance' spec.add_development_dependency 'bundler' spec.add_development_dependency 'rake' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
wonder-ruby-style-1.65.1 | wonder-ruby-style.gemspec |