This repository has been archived by the owner on Mar 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
54 lines (49 loc) · 1.49 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
source 'https://rubygems.org'
gem 'rails', '~> 5.2.0'
gem 'sass-rails', '~> 5.0.7'
gem 'uglifier', '~> 4.1.16'
gem 'coffee-rails', '~> 4.2.2'
gem 'jquery-rails', '~> 4.3.3'
gem 'jquery-ui-rails', '~> 6.0.1'
gem 'turbolinks', '~> 5.1.1'
gem 'jbuilder', '~> 2.7'
gem 'sdoc', '~> 1.0.0', group: :doc
gem 'haml', '~> 5.0.4'
gem 'haml-rails', '~> 1.0.0'
gem 'sorcery', '~> 0.12.0'
gem 'pg', '~> 1.0.0'
gem 'validates_email_format_of', '~> 1.6.3'
gem 'bootstrap-sass', '~> 3.4.1'
gem 'bootswatch-rails', '~> 3.3.5'
gem 'responders', '~> 2.4.0'
gem 'jquery-turbolinks', '~> 2.1.0'
gem 'cocoon', '~> 1.2.11'
gem 'simple_form', '~> 5.0.0'
gem 'select2-rails', '~> 4.0.3'
gem 'bootsnap', '~> 1.3.1'
gem 'listen', '~> 3.1.5'
gem 'devise_ldap_authenticatable', '~> 0.8.6'
gem 'config', '~> 1.7.1'
gem 'wice_grid', '~> 4.1.0'
group :development, :test do
gem 'byebug', '~> 10.0.2'
gem 'rails-erd', '~> 1.5.2'
end
group :development do
gem 'web-console', '~> 3.6.2'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', '~> 2.0.2'
gem 'annotate', '~> 2.7.4'
gem 'capistrano', '~> 3.11.0'
gem 'capistrano-rails', '~> 1.4.0'
gem 'capistrano-bundler', '~> 1.3.0'
gem 'capistrano-rvm', '~> 0.1.2'
gem 'capistrano-passenger', '~> 0.2.0'
gem 'guard', '~> 2.14.2'
gem 'guard-minitest', '~> 2.4.6'
gem 'capybara', '~> 3.5.1'
gem 'poltergeist', '~> 1.18.1'
end
group :production do
gem 'therubyracer', '~> 0.12.2'
end