Sha256: dd40796e868fb5f0bfcad81e63e88a17af490a086fc41352f349c082fcc49f7d

Contents?: true

Size: 1.16 KB

Versions: 1

Compression:

Stored size: 1.16 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'checkstyle_filter/git/version'

Gem::Specification.new do |spec|
  spec.name          = 'checkstyle_filter-git'
  spec.version       = CheckstyleFilter::Git::VERSION
  spec.authors       = ['sanemat']
  spec.email         = ['o.gata.ken@gmail.com']

  spec.summary       = 'Filter checkstyle format errors on ONLY modified lines.'
  spec.description   = 'Filter errors(checkstyle) by git diff.'
  spec.homepage      = 'https://github.com/packsaddle/ruby-checkstyle_filter-git'
  spec.license       = 'MIT'

  spec.files         =
    `git ls-files -z`
      .split("\x0")
      .reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_runtime_dependency 'thor'
  spec.add_runtime_dependency 'git_diff_parser'
  spec.add_runtime_dependency 'rexml'

  spec.add_development_dependency 'bundler'
  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'test-unit'
  spec.add_development_dependency 'nori'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
checkstyle_filter-git-1.2.0 checkstyle_filter-git.gemspec