-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
63 lines (49 loc) · 1.42 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
source 'http://rubygems.org'
gem 'rails', '4.1.9'
gem 'mysql2'
gem 'pg'
gem 'awesome_nested_set'
gem 'capistrano', '2.15.4'
gem 'rvm-capistrano', git: 'https://github.com/wayneeseguin/rvm-capistrano.git', require: false
gem 'i18n', '~> 0.6.1'
# Use bootstrap and formtastic all nicely:
# http://rubysource.com/too-good-to-be-true-twitter-bootstrap-meets-formtastic-and-tabulous/
gem 'sass-rails'
gem 'bootstrap-sass', '~> 3.3.3'
gem 'formtastic-bootstrap'
gem 'tabulous'
gem 'compass-rails'
# Use haml for html
gem 'haml'
# Use devise for authentication
gem 'devise'
# and cantango for roles
gem 'cantango'
# API access gem
gem 'faraday'
# json parser
gem 'json'
# Generates universally unique identifiers
gem 'uuid'
# Create PDFs using plain old HTML+CSS. Uses wkhtmltopdf on the back-end which
# renders HTML using Webkit
gem 'wisepdf'
gem 'finalist-wkhtmltopdf'
# Gems used only for assets and not required
# in production environments by default.
# gem 'compass', :git => 'http://github.com/chriseppstein/compass.git'
gem 'coffee-rails'
gem 'uglifier'
gem 'jquery-rails'
group :test do
gem 'minitest'
gem 'minitest-rails'
gem 'minitest-reporters'
gem 'factory_girl_rails'
gem 'capybara'
gem 'capybara_minitest_spec'
gem 'database_cleaner'
gem 'delorean'
end
gem 'protected_attributes' # https://github.com/rails/protected_attributes
gem 'activerecord-deprecated_finders', require: 'active_record/deprecated_finders'