-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
83 lines (64 loc) · 1.76 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
source 'https://rubygems.org'
ruby "2.4.0"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'dotenv-rails', require: 'dotenv/rails-now'
gem 'rails', '5.0.1'
# postgresql support
gem 'pg'
# Use SCSS for stylesheets
gem 'sass-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
# Use jquery as the JavaScript library
gem 'jquery-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', group: :development
# use unicorn server
gem 'unicorn'
gem 'unicorn-rails'
# Haml templates
gem 'haml-rails'
# Devise for authentication
gem 'devise'
# SSL
gem 'rack-ssl'
# LDAP
gem 'net-ldap', '0.16.0'
# Memory session store
gem 'activerecord-session_store'
# Asynchronous jobs
gem 'delayed_job_active_record'
gem 'daemons'
# gem 'websocket-rails' # turned off temporarily
# Date NLP
gem 'chronic'
# Attachments
gem 'carrierwave'
# ZIPs
gem 'rubyzip'
# application monitoring
gem "skylight"
# Tables
gem 'jquery-datatables-rails'
# Syntax highlighting
gem 'pygments.rb', :require => 'pygments'
# Encoding
gem 'unidecoder' # TODO ISO-8859-1 compatibility
# Faster json
gem "oj"
gem "oj_mimic_json"
gem 'bugsnag'
group :development, :test do
gem 'better_errors'
gem 'binding_of_caller'
gem 'rspec-rails'
gem 'active_record_query_trace'
end