simhash2 0.0.1 → 0.0.2

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: bd2ed19bec8ea85cee9f79596b1462883eca1df5
4
- data.tar.gz: 642f9ce751132870bb0dfe14301fbe3199bd0bcd
3
+ metadata.gz: 4649489bf0c74cadd1dc2387578fc76994d3bdf6
4
+ data.tar.gz: 3eb87d8c24c0b476278b7c7fc18a8555c1d3215e
5
5
  SHA512:
6
- metadata.gz: 34d638e74e3dade90dfa25e9d9d56e3b2574b155cd90123c5d359e73c83afa0270613c1325b5b9cf198e5c79b0063b319ce9c6d55df6715e954834d1abd8afb0
7
- data.tar.gz: eb0302bc772a0d53ba5ce6099bc3cb40376e0dfc9c987ab95194888e6483afb66f146b518fce240e1c4b69ab05cfeff70893eef37c52fa474dc98e6c5b62868d
6
+ metadata.gz: b4802c746e43f91b99b6cc6f17f7a2757666596b9b70104eae7b4581dbf63a878ac4741b10ba7686bc6d2b7749132c4bf2cc94bca8416614521dac80c1f5f8df
7
+ data.tar.gz: d5e1cec7950aef8d40f81518644554cfc6e23af590c8249b7adf1feef56c13db452548611e182f6449ed4182367a14c3ca5c6a288e34c40f32e63889b3b4b168
data/Gemfile CHANGED
@@ -1,8 +1,9 @@
1
- source 'http://rubygems.org'
2
-
3
- # Specify your gem's dependencies in MetaInspector.gemspec
4
- gemspec
5
-
6
- gem 'coveralls', require: false
7
- gem 'rake'
8
- gem 'rspec'
1
+ source 'http://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in simhash2.gemspec
4
+ gemspec
5
+
6
+ gem 'coveralls', require: false
7
+ gem 'fast-stemmer', require: false
8
+ gem 'rake'
9
+ gem 'rspec'
data/README.md CHANGED
@@ -4,3 +4,5 @@
4
4
  [![Coverage Status](https://coveralls.io/repos/github/armchairtheorist/simhash/badge.svg?branch=master)](https://coveralls.io/github/armchairtheorist/simhash?branch=master)
5
5
 
6
6
  # Simhash
7
+
8
+ This is a rewrite of the [bookmate/simhash](https://github.com/bookmate/simhash) gem, which is an implementation of Moses Charikar's simhashes in Ruby.
@@ -1,4 +1,4 @@
1
- require 'simhash/version'
1
+ require 'simhash2/version'
2
2
 
3
3
  module Simhash
4
4
  extend self
@@ -0,0 +1,3 @@
1
+ module Simhash
2
+ VERSION = '0.0.2'.freeze
3
+ end
data/simhash2.gemspec CHANGED
@@ -1,4 +1,4 @@
1
- require File.expand_path('../lib/simhash/version', __FILE__)
1
+ require File.expand_path('../lib/simhash2/version', __FILE__)
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = 'simhash2'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simhash2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan Wong
@@ -54,8 +54,8 @@ files:
54
54
  - LICENSE.txt
55
55
  - README.md
56
56
  - Rakefile
57
- - lib/simhash.rb
58
- - lib/simhash/version.rb
57
+ - lib/simhash2.rb
58
+ - lib/simhash2/version.rb
59
59
  - simhash2.gemspec
60
60
  - spec/simhash_spec.rb
61
61
  - spec/spec_helper.rb
@@ -1,3 +0,0 @@
1
- module Simhash
2
- VERSION = '0.0.1'.freeze
3
- end