
Security News
New Website “Is It Really FOSS?” Tracks Transparency in Open Source Distribution Models
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
This a fake implementation of redis-rb for machines without Redis or test environments
Install the gem:
gem install fakeredis
Add it to your Gemfile:
gem "fakeredis"
FakeRedis currently supports redis-rb v3 or later, if you are using redis-rb v2.2 install the version 0.3.x:
gem install fakeredis -v "~> 0.3.0"
or use the branch 0-3-x on your Gemfile:
gem "fakeredis", :git => "git://github.com/guilleiguaran/fakeredis.git", :branch => "0-3-x"
You can use FakeRedis without any changes:
require "fakeredis"
redis = Redis.new
>> redis.set "foo", "bar"
=> "OK"
>> redis.get "foo"
=> "bar"
Read redis-rb documentation and Redis homepage for more info about commands
Require this either in your Gemfile or in RSpec's support scripts. So either:
# Gemfile
group :test do
gem "rspec"
gem "fakeredis", :require => "fakeredis/rspec"
end
Or:
# spec/support/fakeredis.rb
require 'fakeredis/rspec'
Require this either in your Gemfile or in Minitest's support scripts. So either:
# Gemfile
group :test do
gem "minitest"
gem "fakeredis", :require => "fakeredis/minitest"
end
Or:
# test/test_helper.rb (or test/minitest_config.rb)
require 'fakeredis/minitest'
Thanks to all contributors.
Copyright (c) 2011-2023 Guillermo Iguaran. See LICENSE for further details.
FAQs
Unknown package
We found that fakeredis demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.