Commit f981a27524aabf310a5da34cea3fd5fb11846868
1 parent
9c092190
Exists in
colab
and in
4 other branches
Added Dalli for memcached usage in production
Showing
2 changed files
with
5 additions
and
0 deletions
Show diff stats
Gemfile
... | ... | @@ -48,6 +48,9 @@ gem "chart-js-rails", "~> 0.0.6" |
48 | 48 | # JQueryUI |
49 | 49 | gem 'jquery-ui-rails', '~> 4.1.0' |
50 | 50 | |
51 | +# Memcached | |
52 | +gem "dalli", "~> 2.7.0" | |
53 | + | |
51 | 54 | group :doc do |
52 | 55 | # bundle exec rake doc:rails generates the API under doc/api. |
53 | 56 | gem 'sdoc', require: false | ... | ... |
Gemfile.lock
... | ... | @@ -85,6 +85,7 @@ GEM |
85 | 85 | cucumber (>= 1.2.0) |
86 | 86 | nokogiri (>= 1.5.0) |
87 | 87 | rails (>= 3.0.0) |
88 | + dalli (2.7.0) | |
88 | 89 | database_cleaner (1.2.0) |
89 | 90 | debug_inspector (0.0.2) |
90 | 91 | devise (3.2.2) |
... | ... | @@ -277,6 +278,7 @@ DEPENDENCIES |
277 | 278 | coveralls |
278 | 279 | cucumber (~> 1.3.10) |
279 | 280 | cucumber-rails (~> 1.4.0) |
281 | + dalli (~> 2.7.0) | |
280 | 282 | database_cleaner |
281 | 283 | devise (~> 3.2.0) |
282 | 284 | factory_girl_rails (~> 4.3.0) | ... | ... |