diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-11-23 23:12:00 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2019-11-24 01:19:56 +0100 |
commit | 37b23e447d12da506d80966edb2c3d5736378cfb (patch) | |
tree | 34f82d9289ec4e0ffdacecaeef18538fb0b06f9a /gnu/packages/ruby.scm | |
parent | 60bc8952cef84674b495c3ffe554b516586ba697 (diff) |
gnu: ruby-jaro-winkler: Update to 1.5.4.
* gnu/packages/ruby.scm (ruby-jaro-winkler): Update to 1.5.4.
Diffstat (limited to 'gnu/packages/ruby.scm')
-rw-r--r-- | gnu/packages/ruby.scm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 4dd11ce3ce..76f2202a86 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -4403,18 +4403,16 @@ when working with Ruby code.") (define-public ruby-jaro-winkler (package (name "ruby-jaro-winkler") - (version "1.5.2") + (version "1.5.4") (source (origin (method url-fetch) (uri (rubygems-uri "jaro_winkler" version)) (sha256 - (base32 - "1zz27z88qznix4r65gd9h56gl177snlfpgv10b0s69vi8qpl909l")))) + (base32 "1y8l6k34svmdyqxya3iahpwbpvmn3fswhwsvrz0nk1wyb8yfihsh")))) (build-system ruby-build-system) (arguments - '(;; No included tests - #:tests? #f)) + '(#:tests? #f)) ; no included tests (synopsis "Ruby implementation of Jaro-Winkler distance algorithm") (description "@code{jaro_winkler} is an implementation of Jaro-Winkler distance |