Skip to content
This repository has been archived by the owner on Dec 7, 2018. It is now read-only.

Commit

Permalink
Merge 863612c into 4c6e978
Browse files Browse the repository at this point in the history
  • Loading branch information
rfestag committed Apr 23, 2017
2 parents 4c6e978 + 863612c commit 600579f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 37 deletions.
4 changes: 0 additions & 4 deletions .rspec

This file was deleted.

4 changes: 2 additions & 2 deletions Gemfile
Expand Up @@ -2,5 +2,5 @@ source 'https://rubygems.org'
gemspec

gem 'coveralls', require: false
gem 'celluloid', github: 'celluloid/celluloid'
gem 'celluloid-io', github: 'celluloid/celluloid-io'
gem 'celluloid'
gem 'celluloid-io'
2 changes: 1 addition & 1 deletion lib/celluloid/redis.rb
@@ -1,4 +1,4 @@
require "redis"

require "celluloid/redis/version"
require "celluloid/redis/redis_ext"
require "redis/connection/celluloid"
28 changes: 0 additions & 28 deletions lib/celluloid/redis/redis_ext.rb

This file was deleted.

4 changes: 2 additions & 2 deletions spec/redis/connection/celluloid_spec.rb
Expand Up @@ -9,10 +9,10 @@

# FIXME: perhaps some better tests are in order here?
redis.set(example_key, '')
redis.get(example_key).should eq ''
expect(redis.get(example_key)).to eq('')

redis.set(example_key, example_value)
redis.get(example_key).should eq example_value
expect(redis.get(example_key)).to eq(example_value)
end

it "cleanly shuts down an instance" do
Expand Down

0 comments on commit 600579f

Please sign in to comment.