json-bloomfilter 0.0.6 → 0.1.0

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.
data/.travis.yml ADDED
@@ -0,0 +1,3 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.9.3
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- json-bloomfilter (0.0.6)
4
+ json-bloomfilter (0.1.0)
5
5
 
6
6
  GEM
7
7
  remote: http://rubygems.org/
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Serialisable (JSON) Bloom Filter
2
2
 
3
+ [![Build Status](https://travis-ci.org/cbetta/json-bloomfilter.png?branch=master)](https://travis-ci.org/cbetta/json-bloomfilter)
4
+
3
5
  A bloom filter implementation that is serialisable to JSON and compatible between both Ruby and Javascript. Very useful when needing to train a bloom filter in one language and using it in the other.
4
6
 
5
7
  ## Why?
@@ -112,6 +114,7 @@ Additionally you can pass along:
112
114
 
113
115
  ## Release notes
114
116
 
117
+ * **0.1.0** Added travis. Bumped minor release version
115
118
  * **0.0.6** Adds a factory that takes a size + error rate
116
119
  * **0.0.5** Adds installer of JS file
117
120
  * **0.0.4** Adds JS tests
data/Rakefile CHANGED
@@ -1,7 +1,7 @@
1
1
  require "bundler/gem_tasks"
2
2
 
3
3
  desc "Set up and run tests"
4
- task :default => [:test]
4
+ task :default => [:test, :"jasmine:ci"]
5
5
 
6
6
  desc "Run tests"
7
7
  task :test do
@@ -1,3 +1,3 @@
1
1
  class JsonBloomfilter
2
- VERSION = "0.0.6" unless defined? JsonBloomfilter::VERSION
2
+ VERSION = "0.1.0" unless defined? JsonBloomfilter::VERSION
3
3
  end
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: json-bloomfilter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.1.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -135,6 +135,7 @@ extra_rdoc_files: []
135
135
  files:
136
136
  - .rspec
137
137
  - .rvmrc
138
+ - .travis.yml
138
139
  - Gemfile
139
140
  - Gemfile.lock
140
141
  - LICENSE
@@ -154,6 +155,7 @@ files:
154
155
  - pkg/json-bloomfilter-0.0.3.gem
155
156
  - pkg/json-bloomfilter-0.0.4.gem
156
157
  - pkg/json-bloomfilter-0.0.5.gem
158
+ - pkg/json-bloomfilter-0.0.6.gem
157
159
  - spec/javascripts/bitarray_spec.js
158
160
  - spec/javascripts/bloomfilter_spec.js
159
161
  - spec/javascripts/support/jasmine.yml
@@ -182,7 +184,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
182
184
  version: '0'
183
185
  segments:
184
186
  - 0
185
- hash: -1108615832793611037
187
+ hash: 3678944871112734322
186
188
  requirements: []
187
189
  rubyforge_project:
188
190
  rubygems_version: 1.8.24