Skip to content

Commit

Permalink
Merge pull request #22 from Sage/ENG-2680
Browse files Browse the repository at this point in the history
Set value of db config to 0
  • Loading branch information
tapan-sh authored Oct 16, 2024
2 parents 977971b + 76cf411 commit 3940ebe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ To run the tests locally, we use Docker to provide a Ruby container.

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.

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).
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).

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion lib/cache_store_redis/optional_redis_cache_store.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def redis_store
def configure(
host = 'localhost',
port = 6379,
db = 'default',
db = 0,
password = nil,
driver: nil,
url: nil,
Expand Down
2 changes: 1 addition & 1 deletion lib/cache_store_redis/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module CacheStoreRedis
VERSION = '2.4.0'
VERSION = '2.4.1'
end

0 comments on commit 3940ebe

Please sign in to comment.