Mercurial > rsstweet
annotate Gemfile @ 111:3df5fcecdd46
Update gems
author | nanaya <me@myconan.net> |
---|---|
date | Tue, 13 Dec 2016 04:19:23 +0900 |
parents | f76d44baa3dc |
children | dac5a66e2c73 |
rev | line source |
---|---|
19 | 1 source "https://rubygems.org" |
0 | 2 |
89 | 3 rails_ver = "~> 5.0.0" |
34 | 4 gem "actionview", rails_ver |
5 gem "railties", rails_ver | |
6 gem "actionpack", rails_ver | |
7 | |
110 | 8 gem "redis-rails" |
111 | 9 # 3.3.2 has broken large string handling. |
10 # Reference: https://github.com/redis/redis-rb/issues/650 | |
11 gem "redis", "= 3.3.1" | |
0 | 12 |
10 | 13 gem "twitter" |
14 gem "twitter-text" | |
59 | 15 |
60 | 16 gem "newrelic_rpm" |
83 | 17 |
18 gem "puma", :require => false | |
92 | 19 gem "unicorn", :require => false, :platforms => :ruby |