-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
rubocop-capybara.gemspec
36 lines (30 loc) · 1.11 KB
/
rubocop-capybara.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
# frozen_string_literal: true
$LOAD_PATH.unshift File.expand_path('lib', __dir__)
require 'rubocop/capybara/version'
Gem::Specification.new do |spec|
spec.name = 'rubocop-capybara'
spec.summary = 'Code style checking for Capybara test files'
spec.description = <<~DESCRIPTION
Code style checking for Capybara test files (RSpec, Cucumber, Minitest).
A plugin for the RuboCop code style enforcing & linting tool.
DESCRIPTION
spec.homepage = 'https://github.com/rubocop/rubocop-capybara'
spec.authors = ['Yudai Takada']
spec.licenses = ['MIT']
spec.version = RuboCop::Capybara::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-capybara/blob/main/CHANGELOG.md',
'documentation_uri' => 'https://docs.rubocop.org/rubocop-capybara/',
'rubygems_mfa_required' => 'true'
}
spec.add_runtime_dependency 'rubocop', '~> 1.41'
end