forked from victorykit/victorykit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
83 lines (72 loc) · 1.67 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
source 'https://rubygems.org'
gem 'rails', '3.2.3'
gem 'pg'
gem 'foreigner'
group :production do
# just used for unsubscribes import
gem 'mysql'
gem 'mysql2'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'uglifier', '>= 1.0.3'
gem 'anjlab-bootstrap-rails', '>= 2.0', :require => 'bootstrap-rails'
gem 'jquery-datatables-rails', :github => 'rweng/jquery-datatables-rails'
gem 'jquery-ui-rails'
gem 'jquery-rails'
end
group :test, :development do
gem 'rspec'
gem 'rspec-rails'
gem 'factory_girl_rails', '~> 3.0'
gem 'faker', '~> 1.0'
gem 'autotest'
gem 'simplecov', :require => false
gem 'selenium-webdriver'
gem 'hirb'
gem 'jslint_on_rails'
gem 'capybara'
gem 'capybara-webkit'
gem 'debugger'
gem 'shoulda-matchers'
gem 'nokogiri'
end
gem 'geocoder'
gem 'haml'
gem 'simple_form'
gem 'browser'
gem 'bootstrap-wysihtml5-rails', :github => 'mkurutin/bootstrap-wysihtml5-rails'
gem 'aws-ses', '~> 0.4.4', :require => 'aws/ses'
gem 'aws-sdk'
gem 'garb'
gem 'oauth'
gem 'rails_config'
# To use ActiveModel has_secure_password
gem 'bcrypt-ruby', '~> 3.0.0'
# for whiplash
gem 'redis'
gem 'simple-random'
gem 'newrelic_rpm'
gem 'newrelic-redis'
gem 'airbrake'
gem 'unicorn'
gem 'foreman'
gem 'resque'
gem 'kaminari'
gem 'redis-store'
gem 'redis-rails'
gem 'dkim'
gem 'sanitize'
gem 'rinku', :require => 'rails_rinku'
gem 'flot-rails'
gem 'truncate_html'
gem 'memoist', :github => 'matthewrudy/memoist'
gem 'premailer'
gem 'whiplash', :github => 'victorykit/whiplash'
gem 'carmen'
gem 'statsd-ruby', :require => 'statsd'
gem 'bumbler'
gem 'fb_graph'
gem 'will_paginate'