Sha256: b2fe9be05490370e933d62e951398e166d6392c0a74c17ec88eb74549b6f3b18
Contents?: true
Size: 1.21 KB
Versions: 1
Compression:
Stored size: 1.21 KB
Contents
lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'commit_lint/gem_version.rb' Gem::Specification.new do |spec| spec.name = 'danger-commit_lint' spec.version = CommitLint::VERSION spec.authors = ['Jon Allured'] spec.email = ['jon.allured@gmail.com'] spec.description = 'A Danger Plugin that ensures nice and tidy commit messages.' spec.summary = "A Danger Plugin that ensure commit messages are not too long, don't end in a period and have a line between subject and body" spec.homepage = 'https://github.com/jonallured/danger-commit_lint' 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' spec.add_development_dependency 'bundler' spec.add_development_dependency 'pry' spec.add_development_dependency 'rake' spec.add_development_dependency 'rspec' spec.add_development_dependency 'rubocop' spec.add_development_dependency 'yard' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
danger-commit_lint-0.0.7 | danger-commit_lint.gemspec |