-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy patherblint-github.gemspec
More file actions
29 lines (22 loc) · 936 Bytes
/
erblint-github.gemspec
File metadata and controls
29 lines (22 loc) · 936 Bytes
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
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = "erblint-github"
s.version = "1.0.1"
s.summary = "erblint GitHub"
s.description = "Template style checking for GitHub Ruby repositories"
s.homepage = "https://github.com/github/erblint-github"
s.license = "MIT"
s.files = Dir["README.md", "LICENSE", "lib/**/*", "config/**/*"]
s.require_paths = ["lib"]
s.required_ruby_version = ">= 3.0.0"
s.email = ["opensource+erblint-github@github.com"]
s.authors = ["GitHub Open Source"]
s.add_development_dependency "erb_lint", "~> 0.9.0"
s.add_development_dependency "minitest", "~> 5.26.0"
s.add_development_dependency "mocha", "~> 3.0.1"
s.add_development_dependency "rake", "~> 13.3.0"
s.add_development_dependency "rubocop", "= 1.85.0"
s.add_development_dependency "rubocop-github", "~> 0.23.0"
s.metadata["rubygems_mfa_required"] = "true"
s.executables << "erblint-disable"
end