diff options
author | beatrix <beatrix.bitrot@gmail.com> | 2017-05-07 13:42:32 -0400 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-05-07 19:42:32 +0200 |
commit | 5c1f70b5c577123cc42e073dea6a8f72e27818f8 (patch) | |
tree | 1d7fe709a98f6d97ded8db4a020f80efe44b9e01 /Gemfile | |
parent | c7848f54ffd67189e368e9d981565076dbb5e770 (diff) |
namespace redis usage (#2869)
* add redis-namespace gem * namespace redis usage * refactor redis namespace code to be less intrusive previously : would be prepended to keys when the REDIS_NAMESPACE env var was not set now if it is not set the namespacing functions are not used at all, which should prevent disruptions when instances update. * fix redis namespace variable style in streaming js * remove trailing space * final redis namespace style fix
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Gemfile b/Gemfile index 7658d6476..ff8e8a3d1 100644 --- a/Gemfile +++ b/Gemfile @@ -26,6 +26,7 @@ gem 'doorkeeper' gem 'fast_blank' gem 'goldfinger' gem 'hiredis' +gem 'redis-namespace' gem 'htmlentities' gem 'http' gem 'http_accept_language' |