Sha256: ebb3b31a54ff88ca8b8aefdb920c9c7e95402a72ba70e4a062c490fa39ed63d7

Contents?: true

Size: 1.23 KB

Versions: 1

Compression:

Stored size: 1.23 KB

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "freistil/rubocop/version"

Gem::Specification.new do |spec|
  spec.name          = "freistil-rubocop"
  spec.version       = Freistil::Rubocop::VERSION
  spec.authors       = ["freistil IT Ltd"]
  spec.email         = ["ops@freistil.it"]
  spec.license       = "Apache-2.0"

  spec.summary       = %q{Rubocop style definitions for freistil IT}
  spec.description   = %q{Ruby style definitions shared by the freistil IT team}
  spec.homepage      = "https://github.com/freistil/freistil-rubocop"

  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", "~> 1.27"
  spec.add_dependency "rubocop-rspec", "~> 2.9"
  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
freistil-rubocop-0.5.0 freistil-rubocop.gemspec