-
Notifications
You must be signed in to change notification settings - Fork 39
/
fuzzy-string-match.gemspec
42 lines (38 loc) · 1.25 KB
/
fuzzy-string-match.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
38
39
40
41
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "fuzzy-string-match"
s.version = "1.0.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Kiyoka Nishiyama"]
s.description = "calculate Jaro Winkler distance."
s.extra_rdoc_files = [
"LICENSE.txt",
"README.md"
]
s.files = [
".gemtest",
"LICENSE.txt",
"README.md",
"Rakefile",
"lib/fuzzystringmatch.rb",
"lib/fuzzystringmatch/inline.rb",
"lib/fuzzystringmatch/inline/jarowinkler.rb",
"lib/fuzzystringmatch/pure.rb",
"lib/fuzzystringmatch/pure/jarowinkler.rb",
"test/basic_native_spec.rb",
"test/basic_pure_spec.rb",
"test/mutibyte_spec.rb"
]
s.homepage = "https://github.com/kiyoka/fuzzy-string-match"
s.licenses = ["Apache-2.0"]
s.require_paths = ["lib"]
s.required_ruby_version = Gem::Requirement.new(">= 1.9.3")
s.rubygems_version = "2.0.14"
s.summary = "fuzzy string matching library"
s.add_development_dependency(%q<rspec>, [">= 3.1.0"])
s.add_runtime_dependency(%q<RubyInline>, [">= 3.8.6"])
end