forked from ForSetGeorgia/Georgian-Election-Protocols
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
67 lines (58 loc) · 2.85 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
source 'https://rubygems.org'
ruby "2.3.4"
gem 'bundler'
gem "rails", "3.2.22.5"
gem "mysql2", "~> 0.3.18" # this gem works better with utf-8
gem "json"
gem "jquery-rails", "3.1.2"
gem "devise", "~> 2.0.4" # user authentication
gem "cancan", "~> 1.6.8" # user authorization
gem "formtastic", "~> 2.1.1" # create forms easier
gem "formtastic-bootstrap", :git => "https://github.com/cgunther/formtastic-bootstrap.git", :branch => "bootstrap-2"
#gem "nested_form", "~> 0.1.1", :git => "https://github.com/davidray/nested_form.git" # easily build nested model forms with ajax links
gem "globalize3", "~> 0.2.0" # internationalization
gem "psych", "2.0.13" # yaml parser - default psych in rails has issues
gem "will_paginate", "~> 3.0.3" # add paging to long lists
#gem "kaminari", "~> 0.14.1" # paging
gem "gon", "5.2.3" # push data into js
gem "dynamic_form", "~> 1.1.4" # to see form error messages
gem "i18n-js", "~> 2.1.2" # to show translations in javascript
gem "paperclip", "~> 3.4.0" # to upload files
#gem "has_permalink", "~> 0.1.4" # create permalink slugs for nice urls
gem "capistrano", "~> 2.12.0" # to deploy to server
gem "exception_notification", "~> 2.5.2" # send an email when exception occurs
gem "useragent", :git => "https://github.com/jilion/useragent.git" # browser detection
#gem "pdfkit", "~> 0.5.2" # generate pdfs
#gem "use_tinymce", "~> 0.0.15" # wysiwyg
#gem "rails_autolink", "~> 1.0.9" # convert string to link if it is url
#gem 'acts_as_commentable', '2.0.1' #comments
#gem "paper_trail", "~> 2.6.3" # keep audit log of all transactions
gem 'active_attr', '~> 0.9.0' # to create tabless models; using for contact form
gem "fastimage" # get image size without downloading the image
gem 'test-unit', '~> 3.0' # needed for rails console
gem 'whenever', '~> 0.9.7' # schedule cron jobs
gem 'dotenv-rails', '~> 2.2', '>= 2.2.1' # environment variables
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem "sass-rails", "3.2.6"
gem "coffee-rails", "~> 3.2.2"
gem "uglifier", ">= 1.0.3"
gem 'therubyracer'
gem 'less-rails', "~> 2.6.0"
gem "twitter-bootstrap-rails", "~> 2.2.8"
gem 'jquery-ui-rails', '~> 5.0', '>= 5.0.5'
gem 'jquery-datatables-rails', '~> 1.12', '>= 1.12.2'
end
group :development do
# gem "mailcatcher", "0.5.5" # small smtp server for dev, http://mailcatcher.me/
# gem "wkhtmltopdf-binary", "~> 0.9.5.3" # web kit that takes html and converts to pdf
gem 'rb-inotify', '~> 0.9.7' # rails dev boost needs this
gem 'rails-dev-boost', :git => 'git://github.com/thedarkone/rails-dev-boost.git' # speed up loading page in dev mode
# Debugging: write 'binding.pry' in Ruby code to debug in terminal
gem 'pry-byebug', '~> 3.5'
end
group :staging, :production do
gem 'unicorn', '~> 5.3.1' # http server
gem 'unicorn-worker-killer', '~> 0.4.4' # kill the workers if they take up too much memory
end