-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
66 lines (57 loc) · 2.96 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
source 'http://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 'jquery-rails', '1.0.19' #gem "jquery-rails", "3.1.2"
gem 'devise', '2.0.4' # user authentication
gem 'formtastic', '2.1.1' # create forms easier
gem "formtastic-bootstrap", :git => "https://github.com/cgunther/formtastic-bootstrap.git", :branch => "bootstrap-2"
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 "gon", "5.2.3" # push data into js
gem 'dynamic_form', '1.1.4' # to see form error messages
gem 'ancestry', '~> 2.1' # control parent/child relationships with shapes
gem 'nokogiri', '~> 1.6', '>= 1.6.8' # xml parser
gem 'exception_notification', '2.5.2' # send an email when exception occurs
#gem 'exception_notification', :require => 'exception_notifier'
gem "capistrano", "~> 2.12.0" # to deploy to server
gem 'fancybox-rails', '~> 0.3.1' # to open pop-up windows
gem "i18n-js", "~> 2.1.2" # to show translations in javascript
gem 'active_attr', '~> 0.9.0' # to create tabless models; using for contact form
gem 'dalli', '~> 2.7', '>= 2.7.6' # memory cache
gem 'kgio', '~> 2.10' # makes dalli faster
gem 'json', '~> 2.0', '>= 2.0.2' # json parser faster than default
#gem "useragent", :git => "https://github.com/jilion/useragent.git" # browser detection
gem 'useragent', '~> 0.16.8'
gem 'rubyzip', '~> 1.2' # generate zip files
gem 'rack-utf8_sanitizer', '~> 1.3.2' # prevent invalid encoding error
gem 'dotenv-rails', '~> 2.2', '>= 2.2.1' # environment variables
gem 'test-unit', '~> 3.0' # required for running rails console
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', '2.0.2'# gem 'jquery-ui-rails', '~> 5.0', '>= 5.0.5'
#gem 'jquery-datatables-rails', git: 'git://github.com/rweng/jquery-datatables-rails.git'
gem 'jquery-datatables-rails', '~> 1.12', '>= 1.12.2'
end
group :development do
# gem 'mailcatcher', '0.5.10' # small smtp server for dev, http://mailcatcher.me/
# gem 'ruby-prof' # analyze code perofrmance
# gem "query_reviewer", :git => "git://github.com/nesquena/query_reviewer.git" # query analyzer
# gem "bullet" # notifies you when n+1 queries are being called
# gem 'slim_scrooge' # looks for queries that get columns that are not used
# gem "rails-indexes" # looks for fields in db that need index
# gem "lol_dba", "~> 1.3.0" # looks for fields in db that need index
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
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