Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
akerl committed Feb 15, 2014
1 parent d1fba3f commit 6e0e829
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions lib/redisstore.rb
Expand Up @@ -3,7 +3,6 @@

##
# Redis-backed Store designed for BasicCache

module RedisStore
class << self
##
Expand All @@ -16,7 +15,6 @@ def new(*args)

##
# Redis-backed store object

class Store
attr_reader :raw

Expand Down Expand Up @@ -66,7 +64,7 @@ def size
# Check for a key in the store

def include?(key)
@raw.exists prep(key)
@raw.exists(prep key)
end

##
Expand Down
2 changes: 1 addition & 1 deletion redisstore.gemspec
@@ -1,6 +1,6 @@
Gem::Specification.new do |s|
s.name = 'redisstore'
s.version = '0.0.1'
s.version = '0.0.2'
s.date = Time.now.strftime("%Y-%m-%d")

s.summary = 'Redis Store for BasicCache'
Expand Down

0 comments on commit 6e0e829

Please sign in to comment.