You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Alternatively, fork the repo and clone your fork.
262
+
$ cd classifier-reborn
263
+
$ bundle install
264
+
$ gem install redis
265
+
$ rake # To run tests.
266
+
```
267
+
268
+
Some tests should be skipped if the Redis server is not running on the development machine. To test all the test cases first [install Redis](https://redis.io/topics/quickstart) then:
269
+
270
+
```bash
271
+
$ redis-server --daemonize yes
272
+
$ rake # To run tests.
273
+
$ rake bench # To run benchmarks.
274
+
# Kill the redis-server daemon when done
275
+
```
276
+
277
+
### Development using Docker
278
+
279
+
If the [Docker](https://docs.docker.com/engine/installation/) is installed on the machine:
0 commit comments