qbloom_filter 0.3.1 → 0.3.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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +2 -2
- data/bin/console +1 -1
- data/lib/{bloom_filter.rb → qbloom_filter.rb} +0 -0
- data/lib/{bloom_filter → qbloom_filter}/version.rb +1 -1
- data/{bloom_filter.gemspec → qbloom_filter.gemspec} +4 -4
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 60cb3a36fc40df572398fae3c612121e88f48ce24282f5c0e7ff7885ebb81974
|
|
4
|
+
data.tar.gz: f4de7116bd2bb48593122a6a4752cea91e27dd43aa58aa9a461433844e3bb267
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2e50b637107d43b62f5918327fc609cf8a333395bd81ef6e33be6a46d00c0e9e21c5f92473c633db6a4e4f004e8d0f029e0a0fba9163e299d8018b77b46cae32
|
|
7
|
+
data.tar.gz: 655e505366492c8308151f136e09f74a89501ed3ff5aaef7944ac72ab9ebc9438e7269d20f37e694fa31150806c0d39d370358a8c5e551988408efb06e756684
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ A Bloom filter is a space-efficient probabilistic data structure
|
|
|
7
7
|
Add this line to your application's Gemfile:
|
|
8
8
|
|
|
9
9
|
```ruby
|
|
10
|
-
gem '
|
|
10
|
+
gem 'qbloom_filter'
|
|
11
11
|
```
|
|
12
12
|
|
|
13
13
|
And then execute:
|
|
@@ -16,7 +16,7 @@ And then execute:
|
|
|
16
16
|
|
|
17
17
|
Or install it yourself as:
|
|
18
18
|
|
|
19
|
-
$ gem install
|
|
19
|
+
$ gem install qbloom_filter
|
|
20
20
|
|
|
21
21
|
## Usage
|
|
22
22
|
|
data/bin/console
CHANGED
|
File without changes
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
require_relative 'lib/
|
|
1
|
+
require_relative 'lib/qbloom_filter/version'
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |spec|
|
|
4
4
|
spec.name = "qbloom_filter"
|
|
@@ -9,14 +9,14 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.licenses = ['MIT']
|
|
10
10
|
spec.summary = %q{Bloom Filter}
|
|
11
11
|
spec.description = %q{Bloom Filter with union and intersection}
|
|
12
|
-
spec.homepage = "https://github.com/superedriver/
|
|
12
|
+
spec.homepage = "https://github.com/superedriver/qbloom-filter"
|
|
13
13
|
spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
|
|
14
14
|
|
|
15
15
|
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
|
16
16
|
|
|
17
17
|
spec.metadata["homepage_uri"] = spec.homepage
|
|
18
|
-
spec.metadata["source_code_uri"] = "https://github.com/superedriver/
|
|
19
|
-
spec.metadata["changelog_uri"] = "https://github.com/superedriver/
|
|
18
|
+
spec.metadata["source_code_uri"] = "https://github.com/superedriver/qbloom-filter"
|
|
19
|
+
spec.metadata["changelog_uri"] = "https://github.com/superedriver/qbloom-filter"
|
|
20
20
|
|
|
21
21
|
# Specify which files should be added to the gem when it is released.
|
|
22
22
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: qbloom_filter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- qaz
|
|
@@ -30,17 +30,17 @@ files:
|
|
|
30
30
|
- bin/rake
|
|
31
31
|
- bin/rspec
|
|
32
32
|
- bin/setup
|
|
33
|
-
-
|
|
34
|
-
- lib/
|
|
35
|
-
-
|
|
36
|
-
homepage: https://github.com/superedriver/
|
|
33
|
+
- lib/qbloom_filter.rb
|
|
34
|
+
- lib/qbloom_filter/version.rb
|
|
35
|
+
- qbloom_filter.gemspec
|
|
36
|
+
homepage: https://github.com/superedriver/qbloom-filter
|
|
37
37
|
licenses:
|
|
38
38
|
- MIT
|
|
39
39
|
metadata:
|
|
40
40
|
allowed_push_host: https://rubygems.org
|
|
41
|
-
homepage_uri: https://github.com/superedriver/
|
|
42
|
-
source_code_uri: https://github.com/superedriver/
|
|
43
|
-
changelog_uri: https://github.com/superedriver/
|
|
41
|
+
homepage_uri: https://github.com/superedriver/qbloom-filter
|
|
42
|
+
source_code_uri: https://github.com/superedriver/qbloom-filter
|
|
43
|
+
changelog_uri: https://github.com/superedriver/qbloom-filter
|
|
44
44
|
post_install_message:
|
|
45
45
|
rdoc_options: []
|
|
46
46
|
require_paths:
|