Sha256: 30eed0b286101fcce02396348f2811e4c6de04bfede9ba6c08e5b978f4cd60b1

Contents?: true

Size: 1.76 KB

Versions: 4

Compression:

Stored size: 1.76 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = 'danger-checkstyle_xml'
  spec.version       = CheckstyleFormat::VERSION
  spec.authors       = ['noboru-i', 'JCarlosR']
  spec.email         = ['juancagb.17@gmail.com']
  spec.description   = %q{Danger plugin for checkstyle formatted xml file.}
  spec.summary       = %q{Danger plugin for checkstyle formatted xml file.}
  spec.homepage      = 'https://github.com/JCarlosR/danger-checkstyle_format'
  spec.license       = 'MIT'

  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ['lib']

  spec.add_runtime_dependency 'danger-plugin-api', '~> 1.0'
  spec.add_runtime_dependency 'ox', '~> 2.14'

  # General ruby development
  spec.add_development_dependency 'bundler', '~> 2.4'
  spec.add_development_dependency 'rake', '~> 13.0'

  # Testing support
  spec.add_development_dependency 'rspec', '~> 3.12'

  # Linting code and docs
  spec.add_development_dependency "rubocop", "~> 1.54"
  spec.add_development_dependency "yard", "~> 0.9"

  # Makes testing easy via `bundle exec guard`
  spec.add_development_dependency 'guard', '~> 2.18'
  spec.add_development_dependency 'guard-rspec', '~> 4.7'

  # If you want to work on older builds of ruby
  spec.add_development_dependency 'listen', '3.8'

  # This gives you the chance to run a REPL inside your tests
  # via:
  #
  #    require 'pry'
  #    binding.pry
  #
  # This will stop test execution and let you inspect the results
  spec.add_development_dependency 'pry'
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
danger-checkstyle_xml-0.0.5 danger-checkstyle_xml.gemspec
danger-checkstyle_xml-0.0.4 danger-checkstyle_xml.gemspec
danger-checkstyle_xml-0.0.3 danger-checkstyle_xml.gemspec
danger-checkstyle_xml-0.0.2 danger-checkstyle_xml.gemspec