Sha256: 013d5251f4b5f85cd447de1ceccfd1277d719fcc1d027a6e30165ad45dfaa0b3
Contents?: true
Size: 898 Bytes
Versions: 2
Compression:
Stored size: 898 Bytes
Contents
lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'changelog/gem_version.rb' Gem::Specification.new do |spec| spec.name = 'danger-changelog' spec.version = Changelog::VERSION spec.authors = ['dblock'] spec.email = ['dblock@dblock.org'] spec.description = 'A danger.systems plugin that is OCD about your CHANGELOG.' spec.summary = 'A danger.systems plugin that is OCD about your CHANGELOG.' spec.homepage = 'https://github.com/dblock/danger-changelog' spec.license = 'MIT' spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR) 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' end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
danger-changelog-0.7.0 | danger-changelog.gemspec |
danger-changelog-0.6.1 | danger-changelog.gemspec |