-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
45 lines (41 loc) · 966 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
source 'http://rubygems.org'
source 'http://gems.github.com'
gem 'rails', '3.0.3'
gem 'rake', '0.8.7'
gem 'pg'
gem 'unicorn'
gem 'slim'
gem 'compass'
gem 'omniauth'
gem 'inherited_resources', '>= 1.1.2'
gem 'maxim-sexy_pg_constraints'
gem 'spectator-validates_email', :require => 'validates_email'
gem "auto_html", '>= 1.3.5'
gem "acts_as_commentable"
gem 'routing-filter'
gem 'http_accept_language'
gem "autotest", "~> 4.4.6"
gem 'activeadmin', :git => 'https://github.com/gregbell/active_admin.git'
gem 'cancan'
gem "mustache"
gem 'kaminari'
gem "meta_search"
gem 'carrierwave', :git => 'https://github.com/jnicklas/carrierwave.git'
gem 'rest-client'
gem "simple_form"
gem 'rmagick'
gem 'capybara', "~> 1.0.0"
gem 'thin'
group :production do
gem 'fog'
gem 'dalli'
end
group :test, :development do
gem 'launchy'
gem 'database_cleaner'
gem 'steak', "~> 2.0.0"
gem 'rspec-rails', "~> 2.6.1"
gem 'rcov'
gem 'factory_girl_rails'
gem "jasmine"
end