Skip to content

Commit

Permalink
rename gemname to "bloomfilter-rb" since "bloomfilter" is taken (doh)
Browse files Browse the repository at this point in the history
  • Loading branch information
igrigorik committed Jan 5, 2011
1 parent 0a9ea6c commit 4c93c3c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
bloomfilter (1.3.1)
bloomfilter-rb (1.3.1)
redis (>= 2.1.1)

GEM
Expand All @@ -23,7 +23,7 @@ PLATFORMS
ruby

DEPENDENCIES
bloomfilter!
bloomfilter-rb!
rake
redis (>= 2.1.1)
rspec
4 changes: 2 additions & 2 deletions bloomfilter.gemspec → bloomfilter-rb.gemspec
Expand Up @@ -3,15 +3,15 @@ $:.push File.expand_path("../lib", __FILE__)
require "bloomfilter/version"

Gem::Specification.new do |s|
s.name = "bloomfilter"
s.name = "bloomfilter-rb"
s.version = BloomFilter::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Ilya Grigorik", "Tatsuya Mori"]
s.email = ["ilya@igvita.com"]
s.homepage = "http://github.com/igrigorik/bloomfilter"
s.summary = "Counting Bloom Filter implemented in Ruby"
s.description = s.summary
s.rubyforge_project = "bloomfilter"
s.rubyforge_project = "bloomfilter-rb"

s.add_dependency "redis", ">= 2.1.1"
s.add_development_dependency "rspec"
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion spec/helper.rb
@@ -1,2 +1,2 @@
require 'bundler/setup'
require 'bloomfilter'
require 'bloomfilter-rb'

0 comments on commit 4c93c3c

Please sign in to comment.