-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
45 lines (39 loc) · 1.28 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
source 'http://rubygems.org'
gem 'puma'
gem 'rails', '5.2.4.6'
gem 'rubyzip', ">= 1.2.2"
gem 'will_paginate'
gem 'mysql2'#, '~> 0.3.21'
gem 'devise'
gem 'devise_ldap_authenticatable'
gem 'devise-encryptable'
gem 'marked-rails'
gem 'delayed_job_active_record'
gem 'composite_primary_keys', ">= 10.9 ", git: 'https://github.com/feederco/composite_primary_keys.git'
gem 'test-unit'
# Use SCSS for stylesheets
gem 'sass-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails'
# 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', '~> 2.0'
# for railties app_generator_test
gem "bootsnap", ">= 1.1.0", require: false
group :assets do
gem 'execjs'
gem 'therubyracer', :platforms => :ruby
end
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
end
group :development do
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end