-
Notifications
You must be signed in to change notification settings - Fork 10
/
PLUGIN.gemspec.template
50 lines (40 loc) · 1.65 KB
/
PLUGIN.gemspec.template
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "${PLUGIN_FILE}/gem_version"
Gem::Specification.new do |spec|
spec.name = "${PLUGIN_NAME}"
spec.version = ${PLUGIN_MODULE}::VERSION
spec.authors = ["${USER_NAME}"]
spec.email = ["${USER_EMAIL}"]
spec.description = "A short description of ${PLUGIN_NAME}."
spec.summary = "A longer description of ${PLUGIN_NAME}."
spec.homepage = "https://github.com/${USER_NAME}/${PLUGIN_NAME}"
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"
# General ruby development
spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "rake", "~> 10.0"
# Testing support
spec.add_development_dependency "rspec", "~> 3.4"
# Linting code and docs
spec.add_development_dependency "rubocop"
spec.add_development_dependency "yard"
# Makes testing easy via `bundle exec guard`
spec.add_development_dependency "guard", "~> 2.14"
spec.add_development_dependency "guard-rspec", "~> 4.7"
# If you want to work on older builds of ruby
spec.add_development_dependency "listen", "3.0.7"
# 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