-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
42 lines (38 loc) · 1.03 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
source 'http://rubygems.org'
gem 'rails', '3.2.11'
gem 'prototype-rails'
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'thin'
gem "haml" # For html templates
gem "haml-rails" # For haml generators to work
gem "devise" # For user management
gem "aws-sdk" # To use amazon S3 as a file store
gem 'paperclip' # For file attachments
gem "delayed_job_active_record" # For updating associated pages
gem 'sunspot_rails'#, '~> 1.3.0'
gem "will_paginate"
gem 'exception_notification'
gem "rails-latex", :git => "git://github.com/tamc/rails-latex.git"
gem "sanitize" # To prevent malicious html
gem "foreman"
gem "recaptcha", :require => "recaptcha/rails"
gem "pg" # required by postgresql
group :development do
gem 'sunspot_solr'
end
group :test do
gem 'sqlite3'
gem 'database_cleaner'
gem 'cucumber-rails'
gem 'cucumber'
gem 'capybara'
gem 'rspec-rails'
gem 'spork'
gem 'launchy' # so we can use : Then show me the page
gem 'machinist'
gem 'faker'
gem 'nokogiri'
gem 'email_spec'
end