Sha256: 2289034afab5f3b4ea89c64026a03838b0685d1a7a7ec1b0f3043390b6c9d7d9
Contents?: true
Size: 1.28 KB
Versions: 3
Compression:
Stored size: 1.28 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', '~> 1.23.0' spec.add_dependency 'rubocop-checkstyle_formatter', '~> 0.4.0' spec.add_dependency 'rubocop-rspec', '~> 2.0' spec.add_dependency 'rubocop-minitest', '~> 0.17.0' spec.add_dependency 'rubocop-performance', '~> 1.8.1' spec.add_dependency 'rubocop-rails', '~> 2.12.4' spec.add_dependency 'rubocop-graphql', '~> 0.11.2' spec.add_development_dependency 'bundler', '~> 2.1' spec.add_development_dependency 'rake', '~> 13.0' end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
theforeman-rubocop-0.1.2 | theforeman-rubocop.gemspec |
theforeman-rubocop-0.1.1 | theforeman-rubocop.gemspec |
theforeman-rubocop-0.1.0 | theforeman-rubocop.gemspec |