-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnormalized_match.gemspec
More file actions
26 lines (22 loc) · 1008 Bytes
/
normalized_match.gemspec
File metadata and controls
26 lines (22 loc) · 1008 Bytes
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
# frozen_string_literal: true
Gem::Specification.new do |spec|
spec.name = "normalized_match"
spec.version = "0.3.0"
spec.authors = ["Raghu Betina"]
spec.email = ["raghu@firstdraft.com"]
spec.homepage = "https://github.com/firstdraft/normalized_match"
spec.summary = "A normalized string matcher for RSpec that ignores case, punctuation, and whitespace differences"
spec.license = "MIT"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/firstdraft/normalized_match/issues",
"changelog_uri" => "https://github.com/firstdraft/normalized_match/blob/main/CHANGELOG.md",
"homepage_uri" => "https://github.com/firstdraft/normalized_match",
"label" => "Normalized Match",
"rubygems_mfa_required" => "true",
"source_code_uri" => "https://github.com/firstdraft/normalized_match"
}
spec.required_ruby_version = ">= 3.2"
spec.add_dependency "rspec", "~> 3.0"
spec.extra_rdoc_files = Dir["README*", "LICENSE*"]
spec.files = Dir["*.gemspec", "lib/**/*"]
end