-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathrubocop-anycable-rails.gemspec
More file actions
31 lines (25 loc) · 1.23 KB
/
rubocop-anycable-rails.gemspec
File metadata and controls
31 lines (25 loc) · 1.23 KB
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
# frozen_string_literal: true
require_relative "lib/anycable/rails/version"
Gem::Specification.new do |spec|
spec.name = "rubocop-anycable-rails"
spec.version = AnyCable::Rails::VERSION
spec.authors = ["palkan"]
spec.email = ["dementiev.vm@gmail.com"]
spec.summary = "RuboCop rules for AnyCable Rails"
spec.description = "RuboCop rules for AnyCable Rails"
spec.homepage = "http://github.com/anycable/anycable-rails"
spec.license = "MIT"
spec.metadata = {
"bug_tracker_uri" => "http://github.com/anycable/anycable-rails/issues",
"changelog_uri" => "https://github.com/anycable/anycable-rails/blob/master/CHANGELOG.md",
"documentation_uri" => "https://docs.anycable.io/#/using_with_rails",
"homepage_uri" => "https://anycable.io/",
"source_code_uri" => "http://github.com/anycable/anycable-rails",
"funding_uri" => "https://github.com/sponsors/anycable",
"rubygems_mfa_required" => "true"
}
spec.files = Dir.glob("lib/anycable/rails/rubocop/**/*") + %w[README.md MIT-LICENSE CHANGELOG.md lib/anycable/rails/version.rb lib/anycable/rails/rubocop.rb lib/anycable/rails/compatibility/rubocop.rb]
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.7"
spec.add_dependency "rubocop", ">= 1.0"
end