-
-
Notifications
You must be signed in to change notification settings - Fork 276
/
rubocop-rspec.gemspec
41 lines (35 loc) · 1.18 KB
/
rubocop-rspec.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
40
41
# frozen_string_literal: true
$LOAD_PATH.unshift File.expand_path('lib', __dir__)
require 'rubocop/rspec/version'
Gem::Specification.new do |spec|
spec.name = 'rubocop-rspec'
spec.summary = 'Code style checking for RSpec files'
spec.description = <<~DESCRIPTION
Code style checking for RSpec files.
A plugin for the RuboCop code style enforcing & linting tool.
DESCRIPTION
spec.homepage = 'https://github.com/rubocop/rubocop-rspec'
spec.authors = ['John Backus', 'Ian MacLeod', 'Nils Gemeinhardt']
spec.email = [
]
spec.licenses = ['MIT']
spec.version = RuboCop::RSpec::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/blob/master/CHANGELOG.md',
'documentation_uri' => 'https://docs.rubocop.org/rubocop-rspec/',
'rubygems_mfa_required' => 'true'
}
spec.add_dependency 'rubocop', '~> 1.61'
end