fuzzy-string-match 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +11 -3
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3c117d4545cb7391d5475285186984ce87b455ca
|
|
4
|
+
data.tar.gz: f2b695bbcfb03b065cf0074260e845c012865711
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c40b7e85f9a683f94c63f912c88ea5dfa4283be9a1bb1e7df1c83e1cc1ba35d8cbdc3364cf8fb0238da2c28fd19d1aaae36482bfe845e9dcca9b66c8b6cbbc99
|
|
7
|
+
data.tar.gz: d0ead308945852b95cc673bcf7b330cb8b22d15706b828ce8b525c8f2902df7145d6015a76d3e400abd3692434aa82fd1d9824563c22da94948f5d767e1034c9
|
data/README.md
CHANGED
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
|
|
77
77
|
### for CRuby
|
|
78
78
|
- RubyInline
|
|
79
|
-
- Ruby 2.
|
|
79
|
+
- Ruby 2.0.0 or higher ( includes RubyInstaller.org's CRuby on Windows )
|
|
80
80
|
|
|
81
81
|
### for JRuby
|
|
82
82
|
- JRuby 1.6.6 or higher
|
|
@@ -96,9 +96,17 @@
|
|
|
96
96
|
|
|
97
97
|
## ChangeLog
|
|
98
98
|
|
|
99
|
-
### 0.
|
|
99
|
+
### 1.0.1 / Jun 25, 2017
|
|
100
|
+
* support JRuby 1.7.26(CRuby 1.9 compatible)
|
|
101
|
+
|
|
102
|
+
### 1.0.0 / Mar 10, 2017
|
|
103
|
+
* First stable release
|
|
100
104
|
|
|
101
|
-
|
|
105
|
+
### 0.9.9 / Mar 9, 2017
|
|
106
|
+
* Supported ruby version is 2.0.0 or higher(for RHEL 7.x)
|
|
107
|
+
|
|
108
|
+
### 0.9.8 / Mar 9, 2017
|
|
109
|
+
* Supported ruby version is 2.1.0 or higher
|
|
102
110
|
* Merge pull request #16 from ferdinandrosario/ferdinandrosario-patch-1 (Travis rubies updated)
|
|
103
111
|
* Merge pull request #14 from timsatterfield/master (Reduce calls to strlen() in native jaro winkler)
|
|
104
112
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fuzzy-string-match
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kiyoka Nishiyama
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-06-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|
|
@@ -70,7 +70,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
70
70
|
requirements:
|
|
71
71
|
- - ">="
|
|
72
72
|
- !ruby/object:Gem::Version
|
|
73
|
-
version:
|
|
73
|
+
version: 1.9.3
|
|
74
74
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
requirements:
|
|
76
76
|
- - ">="
|
|
@@ -78,7 +78,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
78
78
|
version: '0'
|
|
79
79
|
requirements: []
|
|
80
80
|
rubyforge_project:
|
|
81
|
-
rubygems_version: 2.6.
|
|
81
|
+
rubygems_version: 2.6.11
|
|
82
82
|
signing_key:
|
|
83
83
|
specification_version: 4
|
|
84
84
|
summary: fuzzy string matching library
|