forked from cqr/pop-up-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
163 lines (121 loc) · 2.95 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '~> 3.2.17'
# Rails 4 pre-prep
gem 'strong_parameters'
gem 'routing_concerns'
gem 'etagger', github: 'rails/etagger'
gem 'cache_digests'
gem 'dalli'
gem 'media_monster_client'
gem 'pg'
# gem 'activerecord-postgres-hstore', github: 'engageis/activerecord-postgres-hstore'
gem 'activerecord-postgres-hstore', '~> 0.6.0'
gem 'postgres_ext'
gem 'acts_as_list'
gem 'multi_json', '~> 1.5.0'
gem 'decent_exposure', '~> 2.1.0'
# gem 'decent_exposure', github: 'voxdolo/decent_exposure'
# login to prx.org using omniauth
gem 'omniauth'
gem 'omniauth-oauth2', '~> 1.1.0'
gem 'omniauth-prx', github: 'PRX/omniauth-prx'
gem 'omniauth-twitter'
gem 'omniauth-facebook'
gem 'devise'
gem 'devise_invitable', github: 'scambra/devise_invitable'
gem 'bootstrap_form'
gem 'cancan'
# search with elasticsearch
gem 'tire'
# server-side templates
gem 'slim-rails', '~> 1.0'
gem 'rabl'
# background processing
gem 'sidekiq'
# misc
gem 'copyrighter'
gem 'geocoder'
gem 'will_paginate'
gem 'carrierwave'
gem 'rmagick'
gem 'fog', '~> 1.11.1'
gem 'heroku-api', '~> 0.3.10'
gem 'excon', '~> 0.21.0'
gem 'pb_core', '~> 0.1.6'
# gem 'pb_core', path: '~/dev/projects/pb_core'
gem 'chronic'
gem 'state_machine'
gem 'doorkeeper'
gem "acts_as_paranoid", "~> 0.4.2"
gem 'newrelic_rpm', :github => 'newrelic/rpm', :branch => 'RUBY-1180'
gem 'feedzirra', github: 'pauldix/feedzirra'
gem 'rolify'
gem 'sanitize'
<<<<<<< HEAD
gem 'soundcloud'
gem 'amara', "~> 0.1.1"
gem 'prerender_rails'
# gem 'amara', :path => '../amara'
# gem 'amara', github: 'PRX/amara'
gem 'countries'
gem 'language_list'
gem 'stripe'
gem 'redis-rails'
gem 'jplayer-rails'
gem 'gibbon'
gem 'rack-cors'
gem 'dbpedia'
gem 'text-table'
=======
>>>>>>> 829aa7c22ccd25b54908353b7df53208ea817954
group :assets do
gem 'sprockets'
gem 'sass-rails', '~> 3.2'
gem 'uglifier', '>= 1.0.3'
gem 'bootstrap-sass'
gem 'angularjs-rails-resource'
gem 'font-awesome-sass-rails', github: 'iterion/font-awesome-sass-rails'
gem 'ng_player_hater-rails', '~> 0.0.4'
end
group :development do
gem 'quiet_assets'
gem 'better_errors'
gem 'binding_of_caller'
gem 'ruby_gntp'
gem 'guard-rspec'
gem 'guard-jasmine'
gem "guard-bundler", ">= 1.0.0"
end
group :development, :test do
gem 'pry-rails'
gem 'rspec-rails', '~> 2.4'
gem 'listen'
gem 'terminal-notifier-guard'
gem 'growl', require: false
gem 'rb-inotify', require: false
gem 'rb-fsevent', require: false
gem 'rb-fchange', require: false
gem 'spring'
# Test JS using Jasmine
gem 'jasmine'
gem 'jasmine-rails'
end
group :test do
gem 'factory_girl_rails'
gem 'capybara'
gem 'poltergeist'
gem 'shoulda-matchers'
gem 'stripe-ruby-mock', require: 'stripe_mock'
gem 'simplecov'
gem 'coveralls'
end
group :development, :production, :staging do
gem 'sinatra' # for sidekiq
gem 'autoscaler', '~> 0.2.0'
gem 'foreman'
gem 'unicorn'
end
group :production, :staging do
gem 'rails_12factor'
end