Sha256: 2f5dd2a59ffb4c70599788c8907b2f5b156d64ad3fe3080ec9ce56c6bfcee981
Contents?: true
Size: 1.47 KB
Versions: 1
Compression:
Stored size: 1.47 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'nxt_cop/version' Gem::Specification.new do |spec| spec.name = 'nxt_cop' spec.version = NxtCop::VERSION spec.authors = ['Scott Livingstone'] spec.summary = 'Getsafe shared Rubocop.' spec.homepage = 'https://github.com/nxt-insurance/nxt_cop' spec.license = 'MIT' # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host' # to allow pushing to a single host or delete this section to allow pushing to any host. if spec.respond_to?(:metadata) spec.metadata['allowed_push_host'] = 'https://rubygems.org' spec.metadata['homepage_uri'] = spec.homepage spec.metadata['source_code_uri'] = 'https://github.com/nxt-insurance/nxt_cop' spec.metadata['changelog_uri'] = 'https://github.com/nxt-insurance/nxt_cop/CHANGELOG.md' 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', '1.25.1' spec.add_dependency 'rubocop-rails', '~> 2.8' spec.add_development_dependency 'bundler', '~> 2.1' spec.add_development_dependency 'rake', '~> 13.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
nxt_cop-1.0.13 | nxt_cop.gemspec |