Skip to content

Commit 3940ebe

Browse files
authored
Merge pull request #22 from Sage/ENG-2680
Set value of db config to 0
2 parents 977971b + 76cf411 commit 3940ebe

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ To run the tests locally, we use Docker to provide a Ruby container.
6060

6161
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
6262

63-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
63+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb` and when release tag is created, Github Action pipeline will publish the `.gem` file to [rubygems.org](https://rubygems.org).
6464

6565
## Contributing
6666

lib/cache_store_redis/optional_redis_cache_store.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def redis_store
1414
def configure(
1515
host = 'localhost',
1616
port = 6379,
17-
db = 'default',
17+
db = 0,
1818
password = nil,
1919
driver: nil,
2020
url: nil,

lib/cache_store_redis/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module CacheStoreRedis
2-
VERSION = '2.4.0'
2+
VERSION = '2.4.1'
33
end

0 commit comments

Comments
 (0)