-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
rubocop-rspec_rails.gemspec
39 lines (33 loc) · 1.23 KB
/
rubocop-rspec_rails.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
39
# frozen_string_literal: true
$LOAD_PATH.unshift File.expand_path('lib', __dir__)
require 'rubocop/rspec_rails/version'
Gem::Specification.new do |spec|
spec.name = 'rubocop-rspec_rails'
spec.summary = 'Code style checking for RSpec Rails files'
spec.description = <<~DESCRIPTION
Code style checking for RSpec Rails files.
A plugin for the RuboCop code style enforcing & linting tool.
DESCRIPTION
spec.homepage = 'https://github.com/rubocop/rubocop-rspec_rails'
spec.authors = [
'Benjamin Quorning', 'Phil Pirozhkov', 'Maxim Krizhanovsky', 'Yudai Takada'
]
spec.licenses = ['MIT']
spec.version = RuboCop::RSpecRails::Version::STRING
spec.platform = Gem::Platform::RUBY
spec.required_ruby_version = '>= 2.7.0'
spec.require_paths = ['lib']
spec.files = Dir[
'lib/**/*',
'config/*',
'*.md'
]
spec.extra_rdoc_files = ['MIT-LICENSE.md', 'README.md']
spec.metadata = {
'changelog_uri' => 'https://github.com/rubocop/rubocop-rspec_rails/blob/master/CHANGELOG.md',
'documentation_uri' => 'https://docs.rubocop.org/rubocop-rspec_rails/',
'rubygems_mfa_required' => 'true'
}
spec.add_runtime_dependency 'rubocop', '~> 1.61'
spec.add_runtime_dependency 'rubocop-rspec', '~> 3', '>= 3.0.1'
end