-
Notifications
You must be signed in to change notification settings - Fork 8
/
Gemfile
49 lines (41 loc) · 853 Bytes
/
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
source 'https://rubygems.org'
gem 'rails', '~> 3.2.12'
gem 'haml', '~> 3.1'
gem 'friendly_id', '~> 4.0.9'
gem 'jquery-rails'
gem 'kaminari'
gem 'unicorn'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-github'
gem 'localeapp'
gem 'bbq', '~> 0.2.0'
gem 'paperclip'
gem 'whenever', require: false
gem 'resque'
gem 'sqlite3'
# Do we use these two below anywhere?
gem 'cells', '~> 3.8'
gem 'ri_cal'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'bourbon', '~> 3.0.1'
gem 'neat', '~> 1.0.2'
end
group :development do
gem 'foreman'
gem 'capistrano'
gem 'awesome_print'
gem 'factory_girl_rails', require: false
gem 'minitest-rails'
end
group :production do
gem 'pg'
end
group :test do
gem 'factory_girl_rails'
gem 'connection_pool'
gem 'minitest-rails'
end