-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrubocop-vendor.gemspec
38 lines (33 loc) · 1.43 KB
/
rubocop-vendor.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
$LOAD_PATH.unshift File.expand_path('lib', __dir__)
require 'rubocop/vendor/version'
Gem::Specification.new do |s|
s.name = 'rubocop-vendor'
s.version = RuboCop::Vendor::VERSION
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 3.0'
s.authors = ['Danilo Cabello', 'Marco Costa', 'Osman Currim']
s.description = <<-DESCRIPTION
A collection of RuboCop cops to check for vendor integration
in Ruby code.
DESCRIPTION
s.email = '[email protected]'
s.files = `git ls-files config lib LICENSE.txt README.md`.split($RS)
s.extra_rdoc_files = ['LICENSE', 'README.md']
s.homepage = 'https://github.com/wealthsimple/rubocop-vendor'
s.licenses = ['MIT']
s.summary = 'Automatic vendor integration checking tool for Ruby code.'
s.metadata = {
'homepage_uri' => 'https://rubocop-vendor.readthedocs.io/',
'changelog_uri' => 'https://github.com/wealthsimple/rubocop-vendor/blob/main/CHANGELOG.md',
'source_code_uri' => 'https://github.com/wealthsimple/rubocop-vendor/',
'documentation_uri' => 'https://rubocop-vendor.readthedocs.io/',
'bug_tracker_uri' => 'https://github.com/wealthsimple/rubocop-vendor/issues',
'rubygems_mfa_required' => 'true',
}
s.add_runtime_dependency('rubocop')
s.add_development_dependency('git')
s.add_development_dependency 'parse_a_changelog'
s.add_development_dependency('simplecov')
s.add_development_dependency('ws-style')
end