-
Notifications
You must be signed in to change notification settings - Fork 0
/
rubocop-rails-suite.gemspec
38 lines (32 loc) · 1.37 KB
/
rubocop-rails-suite.gemspec
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
# frozen_string_literal: true
require_relative "lib/rubocop/rails/suite/version"
Gem::Specification.new do |spec|
spec.name = "rubocop-rails-suite"
spec.version = Rubocop::Rails::Suite::VERSION
spec.authors = ["George Mihai Grigore"]
spec.email = ["[email protected]"]
spec.summary = "Enhanced RuboCop rules for Rails applications."
spec.description = "Provides enhanced linting rules for Ruby on Rails, focusing on performance, RSpec, factory_bot, and Faker integration."
spec.homepage = "https://github.com/Grigore-George-Mihai/rubocop-rails-suite"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.platform = Gem::Platform::RUBY
# Metadata
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
# Included files
spec.files = %w[
rubocop.yml
LICENSE.txt
README.md
CHANGELOG.md
]
# Dependencies
spec.add_dependency "rubocop", ">= 1.67", "< 2.0"
spec.add_dependency "rubocop-rails", ">= 2.26.2", "< 3.0"
spec.add_dependency "rubocop-performance", ">= 1.22.1", "< 2.0"
spec.add_dependency "rubocop-factory_bot", ">= 2.26.1", "< 3.0"
spec.add_dependency "rubocop-faker", ">= 1.1.0", "< 2.0"
spec.add_dependency "rubocop-rspec", ">= 3.1.0", "< 4.0"
end