diff --git a/README.md b/README.md index 0e6e585..fc16826 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/lib/cache_store_redis/optional_redis_cache_store.rb b/lib/cache_store_redis/optional_redis_cache_store.rb index 0a8cf6d..e67859a 100644 --- a/lib/cache_store_redis/optional_redis_cache_store.rb +++ b/lib/cache_store_redis/optional_redis_cache_store.rb @@ -14,7 +14,7 @@ def redis_store def configure( host = 'localhost', port = 6379, - db = 'default', + db = 0, password = nil, driver: nil, url: nil, diff --git a/lib/cache_store_redis/version.rb b/lib/cache_store_redis/version.rb index 84ae742..26a41b5 100644 --- a/lib/cache_store_redis/version.rb +++ b/lib/cache_store_redis/version.rb @@ -1,3 +1,3 @@ module CacheStoreRedis - VERSION = '2.4.0' + VERSION = '2.4.1' end