-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrubocop-grape.gemspec
30 lines (22 loc) · 1.02 KB
/
rubocop-grape.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
# frozen_string_literal: true
require_relative 'lib/rubocop/grape/version'
Gem::Specification.new do |spec|
spec.name = 'rubocop-grape'
spec.version = RuboCop::Grape::VERSION
spec.authors = ['Akito Hikasa']
spec.email = ['[email protected]']
spec.summary = 'Automatice Grape code style checking tool.'
spec.description = <<~DESCRIPTION
Automatic Grape code style checking tool.
A RuboCop extension focused on enforcing Grape best practices and coding conventions.
DESCRIPTION
spec.homepage = 'https://github.com/kakubin/rubocop-grape'
spec.required_ruby_version = '>= 2.6.0'
spec.license = 'MIT'
spec.metadata['allowed_push_host'] = 'https://rubygems.org'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = spec.homepage
spec.metadata['changelog_uri'] = 'https://github.com/kakubin/rubocop-grape/blob/master/CHANGELOG.md'
spec.files = `git ls-files bin config lib LICENSE.txt README.md`.split($RS)
spec.add_runtime_dependency 'rubocop', '>= 1.7.0', '< 2.0'
end