├── .gitignore ├── CHANGELOG.md ├── README.md ├── lib └── phoenix_pubsub_redis │ ├── redis.ex │ └── redis_server.ex ├── mix.exs ├── mix.lock └── test ├── phoenix_pubsub_redis_test.exs └── test_helper.exs /.gitignore: -------------------------------------------------------------------------------- 1 | /_build 2 | /deps 3 | erl_crash.dump 4 | *.ez 5 | /doc 6 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixframework/phoenix_pubsub_redis/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixframework/phoenix_pubsub_redis/HEAD/README.md -------------------------------------------------------------------------------- /lib/phoenix_pubsub_redis/redis.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixframework/phoenix_pubsub_redis/HEAD/lib/phoenix_pubsub_redis/redis.ex -------------------------------------------------------------------------------- /lib/phoenix_pubsub_redis/redis_server.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixframework/phoenix_pubsub_redis/HEAD/lib/phoenix_pubsub_redis/redis_server.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixframework/phoenix_pubsub_redis/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixframework/phoenix_pubsub_redis/HEAD/mix.lock -------------------------------------------------------------------------------- /test/phoenix_pubsub_redis_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phoenixframework/phoenix_pubsub_redis/HEAD/test/phoenix_pubsub_redis_test.exs -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start(assert_receive_timeout: 1_000) 2 | --------------------------------------------------------------------------------