-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbaseline.gemspec
More file actions
33 lines (28 loc) · 1.01 KB
/
Copy pathbaseline.gemspec
File metadata and controls
33 lines (28 loc) · 1.01 KB
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
# frozen_string_literal: true
require_relative "lib/baseline/version"
Gem::Specification.new do |spec|
spec.name = "rubykatzen-baseline"
spec.version = Baseline::VERSION
spec.authors = ["rubykatzen"]
spec.summary = "Shared RuboCop and erb_lint configs for dupmachine repositories"
spec.description = "Packages baseline RuboCop and erb_lint configs with runtime dependencies for consumer Ruby projects."
spec.homepage = "https://github.com/rubykatzen/baseline"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.2"
spec.files = Dir[
"config/**/*",
"lib/**/*",
"exe/**/*",
"baseline.gemspec",
"LICENSE",
]
spec.bindir = "exe"
spec.executables = ["baseline-install"]
spec.require_paths = ["lib"]
spec.add_dependency "erb_lint", "~> 0.9"
spec.add_dependency "herb", "~> 0.10"
spec.add_dependency "rubocop", "~> 1.88"
spec.add_dependency "rubocop-performance", "~> 1.26"
spec.add_dependency "rubocop-rails", "~> 2.35"
spec.add_dependency "standard-custom", "~> 1.0"
end