-
Notifications
You must be signed in to change notification settings - Fork 1
/
radius-spec.gemspec
37 lines (31 loc) · 1.51 KB
/
radius-spec.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
# frozen_string_literal: true
lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "radius/spec/version"
Gem::Specification.new do |spec|
spec.name = "radius-spec"
spec.version = Radius::Spec::VERSION
spec.authors = ["Radius Networks", "Aaron Kromer"]
spec.email = ["[email protected]"]
spec.metadata = {
"bug_tracker_uri" => "https://github.com/RadiusNetworks/radius-spec/issues",
"changelog_uri" => "https://github.com/RadiusNetworks/radius-spec/blob/v#{Radius::Spec::VERSION}/CHANGELOG.md",
"source_code_uri" => "https://github.com/RadiusNetworks/radius-spec/tree/v#{Radius::Spec::VERSION}",
"rubygems_mfa_required" => "true",
}
spec.summary = "Radius Networks RSpec setup and plug-ins"
spec.description = "Standard RSpec setup and a collection of plug-ins " \
"to help improve specs."
spec.homepage = "https://github.com/RadiusNetworks/radius-spec"
spec.license = "Apache-2.0"
spec.files = `git ls-files -z`.split("\x0").reject { |f|
f.match(%r{^(test|spec|features)/})
}
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 3.1" # rubocop:disable Gemspec/RequiredRubyVersion
spec.add_dependency "rspec", "~> 3.7"
spec.add_dependency "rubocop", ">= 1.25", "< 1.65"
spec.add_dependency "rubocop-rails", ">= 2.13", "< 2.22"
end