-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrubocop_hixonrails.gemspec
34 lines (32 loc) · 1.31 KB
/
rubocop_hixonrails.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rubocop_hixonrails'
Gem::Specification.new do |spec|
spec.name = 'rubocop-hixonrails'
spec.version = RubocopHixonrails::VERSION
spec.authors = ['Hix on Rails', 'Wiktor Plaga']
spec.license = 'MIT'
spec.email = ['[email protected]']
spec.date = '2020-09-02'
spec.summary = 'Hix on Rails Styleguide'
spec.homepage = 'https://github.com/hixonrails/rubocop-hixonrails'
spec.files = ['lib/rubocop_hixonrails.rb', 'bin/enable_pending_cops', 'default.yml', '.rubocop.yml']
spec.require_paths = %w[lib bin]
spec.bindir = 'bin'
spec.executables = %w[enable_pending_cops]
spec.description = <<-DESCRIPTION
RuboCop configuration with the following extensions:
- rubocop-rails,
- rubocop-performance,
- rubocop-rspec
- rubocop-rake.
Easily extensible, created by Hix on Rails.
DESCRIPTION
spec.add_dependency('rubocop', '~> 1.6.1')
spec.add_dependency('rubocop-performance', '~> 1.9.1')
spec.add_dependency('rubocop-rails', '~> 2.9.0')
spec.add_dependency('rubocop-rake', '~> 0.5.1')
spec.add_dependency('rubocop-rspec', '~> 2.0.1')
spec.required_ruby_version = '>= 2.6.5'
end