This repository has been archived by the owner on Dec 22, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 298
/
Gemfile
112 lines (78 loc) · 2.46 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
source 'https://rubygems.org'
gem 'rails', '~> 5.1.0'
gem 'sass-rails', "~> 5.0.0"
gem 'coffee-rails', "~> 4.2.0"
gem 'uglifier', "~> 3.0.0"
gem 'compass-rails', '~> 3.0.0'
gem 'foundation-rails', '~> 5.5.0'
gem 'jquery-rails', "~> 4.2"
gem 'jquery-visibility-rails'
# foundation form errors
gem 'foundation_rails_helper', "~> 2.0"
# to use debugger
gem 'byebug', '~> 10.0', group: [:development, :test]
gem 'pry', "~> 0.11", group: [:development, :test]
# We need this to not break the test suite as `assigns` and `assert_template` have been remove and extracted to a gem in Rails 5
gem 'rails-controller-testing', group: [:test]
group :development do
# Spring application pre-loader
gem 'spring', "~> 2.0"
# open sent emails in the browser
gem 'letter_opener', "~> 1.4"
end
group :test do
# for travis-ci
gem 'rake', "~> 12.0"
# for coveralls
gem 'coveralls', "~> 0.8"
gem 'timecop', "~> 0.9"
end
# Optional PostgreSQL for production
gem 'pg', "~> 0.19", group: :postgresql
# Optional MySQL for production
gem 'mysql2', "~> 0.4", group: :mysql
# Optional SQLite for development
gem 'sqlite3', "~> 1.3", group: :sqlite
# authentication
gem 'devise', "~> 4.2"
gem 'devise_ldap_authenticatable', "~> 0.8"
# 2.7.0 appears to have regressions that are fixed in 2.7.1
gem 'mail', '~> 2.6', '!= 2.7.0'
# omniauth
gem 'omniauth-google-oauth2', "~> 0.4"
# authorization
gem 'cancancan', '~> 2.1', '>= 2.1.4'
# pagination
gem 'will_paginate', "~> 3.1"
# attachments, thumbnails etc
gem 'paperclip', "~> 6.1"
# select2 replacement for selectboxes
gem 'select2-rails', '~> 3.5' # newer breaks Foundation Reveal on tickets#show
gem 'font-awesome-rails', '~> 4.7'
# for language detection
gem 'http_accept_language', "~> 2.1"
# internationalisation
gem 'rails-i18n', "~> 5.0"
gem 'devise-i18n', "~> 1.1"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.6'
# fancybox for showing image in lightbox
gem 'fancybox2-rails', "~> 0.2"
# gravatar for user avatar images
gem 'gravatar_image_tag', "~> 1.2"
# Captcha for brimir
gem 'recaptcha', "~> 4.0", require: 'recaptcha/rails'
# talk to RESTful services
gem 'rest-client', '~> 2.0'
# secure digest
gem 'digest-sha3'
# Trix WYSIWYG editor
gem 'trix', "~> 0.10", ">= 0.10.1"
# React support
gem 'react-rails', "~> 1.10"
# Capistrano for deployment
group :development do
gem 'capistrano', '~> 3.8'
gem 'capistrano-rails', require: false
gem 'capistrano-bundler', require: false
end