forked from davidcelis/goodbre.ws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
53 lines (43 loc) · 1.12 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
source 'https://rubygems.org'
gem 'rails', '3.2.13'
gem 'pg', '~> 0.14.1'
gem 'puma', '~> 1.6.0'
gem 'haml'
gem 'recommendable', :github => 'davidcelis/recommendable'
gem 'bcrypt-ruby', '~> 3.0.0'
gem 'capistrano'
gem 'capistrano-maintenance'
# Required for thinking-sphinx, even when using PostgreSQL
gem 'mysql2', '0.3.12b4'
gem 'thinking-sphinx', :github => 'pat/thinking-sphinx'
gem 'sidekiq', '~> 2.7.0'
gem 'sidekiq-unique-jobs', '~> 2.3.0'
# For the sidekiq web interface
gem 'sinatra', :require => nil
gem 'slim', '<= 1.3.0'
gem 'gravatar_image_tag'
gem 'kaminari', '~> 0.14.0'
gem 'newrelic_rpm'
gem 'newrelic-redis'
gem 'twitter-bootstrap-rails', '~> 2.2.0'
gem 'google-analytics-rails'
gem 'jquery-rails'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'font-awesome-rails'
gem 'libv8', '~> 3.11.8'
gem 'therubyracer'
gem 'sass-rails'
gem 'less-rails'
gem 'coffee-rails'
gem 'uglifier'
end
group :development, :test do
gem 'minitest-rails'
gem 'minitest-rails-capybara'
gem 'miniskirt'
gem 'pry-rails'
gem 'pry-coolline'
gem 'quiet_assets'
end