string-similarity 2.0.0 → 2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 308c3664b419f777c0492b103cb9901e108455c0
4
- data.tar.gz: 5e2af01712dc0a08c37b8dd4cbc1f60a5883cb38
3
+ metadata.gz: 46587328eab62395108cbef8c3195326428dab84
4
+ data.tar.gz: b6066809ed34953ebe8f0ef6111050a05650516d
5
5
  SHA512:
6
- metadata.gz: a739214fa67e112e179e9b744e9e8afa4c728d963a0d9ef70bbe3cbbe8abdc8485eef391670963ed050ed723e849ce59bddd672c543c8b12a8c330544800f09e
7
- data.tar.gz: f6c7b317034c2b9c324cdbda88e33fac62e592663676735168017ef3c8ab23f247fe21a4e3289f202271bcbcb639f50c917cddcd47a26cee7e4ec68177235596
6
+ metadata.gz: 42f448b519b73d26c9db02c14fe2abfb130777bd5e439dba48e71e85edc6e8f898782a70140cfa1f4baefb369e95fa4d99d52d9222d2f52309c4b23b27f27d34
7
+ data.tar.gz: d4e91894f077ed938907aeba93cc35a0242dafe775e0e28e50598c7e3de27acd4285096885969997be782d2bfff7bfb9ec1dfe553de584e4734089d8d6152fa9
@@ -1,10 +1,18 @@
1
1
  language: ruby
2
+ cache: bundler
3
+
2
4
  rvm:
5
+ - 2.4
6
+ - 2.3
7
+ - 2.2
3
8
  - ruby-head
4
- - 2.3.0
5
- - 2.2.4
6
- - 2.1.8
7
9
  matrix:
8
10
  allow_failures:
9
11
  - rvm: ruby-head
10
- before_install: gem install bundler -v 1.10.6
12
+
13
+ before_script:
14
+ - curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
15
+ - chmod +x ./cc-test-reporter
16
+ - ./cc-test-reporter before-build
17
+ after_script:
18
+ - ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
@@ -1,9 +1,39 @@
1
- **2.0.0** (2016-02-19)
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
2
3
 
3
- * removed: core extensions on `String`
4
- * added: refinements for `String` (see README!)
4
+ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
+ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
5
6
 
7
+ ## [Unreleased]
6
8
 
7
- **1.1.1** (2016-02-19)
9
+ ## [2.0.1] - 2017-11-22
10
+ ### Fixed
11
+ - `require 'string-similarity'` now actually loads the module. (thanks @wppurking)
12
+ ### Changed
13
+ - CI: Test against recent ruby versions
14
+ - CI: use new CodeClimate reporters
8
15
 
9
- * added: `require 'string-similarity'` now works as well.
16
+ ## [2.0.0] (2016-02-19)
17
+ ### Removed
18
+ - Core extensions on `String`.
19
+
20
+ ### Added
21
+ - Refinements for `String` (see README!).
22
+
23
+
24
+ ## [1.1.1] - (2016-02-19)
25
+ ### Added
26
+ - `require 'string-similarity'` now works as well.
27
+
28
+ ## [1.1.0] - (2015-09-07)
29
+ ### Added
30
+ - Implemented Levenshtein distance/similarity
31
+ - CI setup
32
+ - Proper Documentation
33
+
34
+
35
+ [Unreleased]: https://github.com/mhutter/string-similarity/compare/v2.0.1...HEAD
36
+ [2.0.1]: https://github.com/mhutter/string-similarity/compare/v2.0.0...v2.0.1
37
+ [2.0.0]: https://github.com/mhutter/string-similarity/compare/v1.1.1...v2.0.0
38
+ [1.1.1]: https://github.com/mhutter/string-similarity/compare/v1.1.0...v1.1.1
39
+ [1.1.0]: https://github.com/mhutter/string-similarity/compare/v1.0.0...v1.1.0
data/Gemfile CHANGED
@@ -4,8 +4,8 @@ source 'https://rubygems.org'
4
4
  gemspec
5
5
 
6
6
  group :test do
7
- gem 'codeclimate-test-reporter', require: nil
8
7
  gem 'guard'
9
8
  gem 'guard-rspec'
10
9
  gem 'growl'
10
+ gem 'simplecov', :require => false
11
11
  end
@@ -1 +1 @@
1
- # require 'string/similarity'
1
+ require 'string/similarity'
@@ -1,6 +1,6 @@
1
1
  class String
2
2
  module Similarity
3
3
  # Gem version
4
- VERSION = '2.0.0'
4
+ VERSION = '2.0.1'
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: string-similarity
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Manuel Hutter
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2016-02-19 00:00:00.000000000 Z
11
+ date: 2017-11-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -122,7 +122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
122
122
  version: '0'
123
123
  requirements: []
124
124
  rubyforge_project:
125
- rubygems_version: 2.5.1
125
+ rubygems_version: 2.6.14
126
126
  signing_key:
127
127
  specification_version: 4
128
128
  summary: Various methods for calculating string similarities.