Sha256: 0373f58295f7226e96e9ac1bf268bb4dee329374bd74010cbb4247c1eda095c7
Contents?: true
Size: 1.23 KB
Versions: 2
Compression:
Stored size: 1.23 KB
Contents
# coding: utf-8 lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'theforeman/rubocop/version' Gem::Specification.new do |spec| spec.name = 'theforeman-rubocop' spec.version = Theforeman::Rubocop::VERSION spec.authors = IO.readlines('AUTHORS', encoding: 'utf-8').map(&:strip) spec.email = ['foreman-dev@googlegroups.com'] spec.summary = 'Shared Rubocop configuration for theforeman.org family of projects.' spec.homepage = 'https://github.com/theforeman/theforeman-rubocop' 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', '~> 0.89.0' spec.add_dependency 'rubocop-checkstyle_formatter', '~> 0.4.0' spec.add_dependency 'rubocop-rspec', '~> 1.43.2' spec.add_dependency 'rubocop-minitest', '~> 0.10.1' spec.add_dependency 'rubocop-performance', '~> 1.8.1' spec.add_dependency 'rubocop-rails', '~> 2.8.1' spec.add_development_dependency 'bundler', '~> 2.1' spec.add_development_dependency 'rake', '~> 13.0' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
theforeman-rubocop-0.0.6 | theforeman-rubocop.gemspec |
theforeman-rubocop-0.0.4 | theforeman-rubocop.gemspec |