README.md in redis-4.2.5 vs README.md in redis-4.3.0

- old
+ new

@@ -1,6 +1,6 @@ -# redis-rb [![Build Status][travis-image]][travis-link] [![Inline docs][inchpages-image]][inchpages-link] ![](https://github.com/redis/redis-rb/workflows/Test/badge.svg?branch=master) +# redis-rb [![Build Status][gh-actions-image]][gh-actions-link] [![Inline docs][inchpages-image]][inchpages-link] A Ruby client that tries to match [Redis][redis-home]' API one-to-one, while still providing an idiomatic interface. See [RubyDoc.info][rubydoc] for the API docs of the latest published gem. @@ -52,10 +52,16 @@ ```ruby redis = Redis.new(password: "mysecret") ``` +To connect a Redis instance using [ACL](https://redis.io/topics/acl), use: + +```ruby +redis = Redis.new(username: 'myname', password: 'mysecret') +``` + The Redis class exports methods that are named identical to the commands they execute. The arguments these methods accept are often identical to the arguments specified on the [Redis website][redis-commands]. For instance, the `SET` and `GET` commands can be called like this: @@ -438,11 +444,11 @@ ``` ## Testing This library is tested against recent Ruby and Redis versions. -Check [Travis][travis-link] for the exact versions supported. +Check [Github Actions][gh-actions-link] for the exact versions supported. ## See Also - [async-redis](https://github.com/socketry/async-redis) — An [async](https://github.com/socketry/async) compatible Redis client. @@ -457,14 +463,13 @@ [Fork the project](https://github.com/redis/redis-rb) and send pull requests. -[inchpages-image]: https://inch-ci.org/github/redis/redis-rb.svg -[inchpages-link]: https://inch-ci.org/github/redis/redis-rb -[redis-commands]: https://redis.io/commands -[redis-home]: https://redis.io -[redis-url]: http://www.iana.org/assignments/uri-schemes/prov/redis -[travis-home]: https://travis-ci.org/ -[travis-image]: https://secure.travis-ci.org/redis/redis-rb.svg?branch=master -[travis-link]: https://travis-ci.org/redis/redis-rb -[rubydoc]: http://www.rubydoc.info/gems/redis +[inchpages-image]: https://inch-ci.org/github/redis/redis-rb.svg +[inchpages-link]: https://inch-ci.org/github/redis/redis-rb +[redis-commands]: https://redis.io/commands +[redis-home]: https://redis.io +[redis-url]: http://www.iana.org/assignments/uri-schemes/prov/redis +[gh-actions-image]: https://github.com/redis/redis-rb/workflows/Test/badge.svg +[gh-actions-link]: https://github.com/redis/redis-rb/actions +[rubydoc]: http://www.rubydoc.info/gems/redis