Sha256: 515f6dfb28f02858d5bcdc5902bd6450e279d39ff760d93a0ad57ecfbc3f9695
Contents?: true
Size: 1.81 KB
Versions: 1
Compression:
Stored size: 1.81 KB
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'spotbugs/gem_version' Gem::Specification.new do |spec| spec.name = 'danger-spotbugs' spec.version = Spotbugs::VERSION spec.authors = ['Mathieu Rul'] spec.email = ['mathroule@gmail.com'] spec.description = 'A Danger plugin for SpotBugs.' spec.summary = 'A Danger plugin for SpotBugs, see https://spotbugs.github.io.' spec.homepage = 'https://github.com/mathroule/danger-spotbugs' 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 'oga', '~> 2.15' # General ruby development spec.add_development_dependency 'bundler', '~> 2.2.14' spec.add_development_dependency 'rake', '~> 10.5.0' # Testing support spec.add_development_dependency 'rspec', '~> 3.10.0' # Linting code and docs spec.add_development_dependency 'rubocop', '~> 1.11.0' spec.add_development_dependency 'rubocop-rake', '~> 0.5.1' spec.add_development_dependency 'rubocop-rspec', '~> 2.2.0' spec.add_development_dependency 'yard', '~> 0.9.26' # Makes testing easy via `bundle exec guard` spec.add_development_dependency 'guard', '~> 2.16.2' spec.add_development_dependency 'guard-rspec', '~> 4.7.3' # If you want to work on older builds of ruby spec.add_development_dependency 'listen', '~> 3.0.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', '~> 0.14.0' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
danger-spotbugs-0.0.1 | danger-spotbugs.gemspec |