-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathrubocop-rails_config.gemspec
22 lines (20 loc) · 1.07 KB
/
rubocop-rails_config.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "rubocop-rails_config"
spec.version = "1.16.0"
spec.summary = "RuboCop configuration which has the same code style checking as official Ruby on Rails"
spec.description = "RuboCop configuration which has the same code style checking as official Ruby on Rails"
spec.authors = ["Toshimaru", "Koichi ITO"]
spec.email = "me@toshimaru.net"
spec.files = Dir["README.md", "LICENSE", "config/*.yml", "lib/**/*"]
spec.homepage = "https://github.com/toshimaru/rubocop-rails_config"
spec.license = "MIT"
spec.required_ruby_version = ">= 2.7.0"
spec.add_dependency "rubocop", ">= 1.57.0"
spec.add_dependency "rubocop-ast", ">= 1.26.0"
spec.add_dependency "rubocop-md"
spec.add_dependency "rubocop-minitest", "~> 0.22"
spec.add_dependency "rubocop-packaging", "~> 0.5"
spec.add_dependency "rubocop-performance", "~> 1.11"
spec.add_dependency "rubocop-rails", "~> 2.0"
end