-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
92 lines (71 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
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1.3'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 6.0'
# Use Webpacker as JavaScript compiler. Read more: https://github.com/rails/webpacker
gem 'webpacker'
# Use React with Rails
gem 'react-rails'
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-ui-rails'
# Use Active Model Serializers to control JSON generation
gem 'active_model_serializers', '~> 0.10.12'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.11'
# Use Bootstrap
gem 'bootstrap-sass', '~> 3.4.1'
gem 'bootstrap-datepicker-rails'
# Use Google ID Token for authentication
gem 'google-id-token'
# Use jwt for authorization
gem 'jwt'
# Use Facebook authentication
gem 'omniauth-facebook'
gem 'omniauth-rails_csrf_protection'
# Koala is a Facebook library for Ruby, supporting e.g. the Graph API
gem "koala", "~> 2.2"
# Use CanCanCan for authorization control
gem 'cancancan', '~> 1.10'
# Use Figaro to set environment variables
gem 'figaro'
# Use Cocoon for dynamic nested forms
gem "cocoon"
# Use Cloudinary to upload images to the cloud
gem 'cloudinary'
# Use ValidatesTimeliness to validate dates, times and datetimes
gem 'validates_timeliness', '~> 4.0'
# Use Data-Confirm Modal to use confirmation modals
gem 'data-confirm-modal'
# Use Axlsx to export to Excel
gem 'rubyzip', '>= 1.2.1'
gem 'axlsx', git: 'https://github.com/randym/axlsx.git', ref: 'c8ac844'
gem 'axlsx_rails'
# Use jQuery HotKeys for WYSIWYG editor
gem 'jquery-hotkeys-rails'
# Use Nokogiri to parse HTML
gem 'nokogiri'
group :development do
# Use sqlite3 as the database for Active Record
gem 'sqlite3', '~> 1.4.2'
# Use Capistrano for deployment
gem 'capistrano', '~> 3.1'
gem 'capistrano-bundler', '~> 1.1.2'
gem 'capistrano-rails', '~> 1.1'
gem 'capistrano-rvm'
gem 'capistrano-passenger'
# Use 'ruby-debug-ide' and 'debase' to enable debugging in VS Code
gem 'ruby-debug-ide'
gem 'debase'
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
# The Listen gem is needed for ActiveSupport::EventedFileUpdateChecker
gem 'listen', '~> 3.0'
end
group :production do
# Use PostgreSQL as the database for production
gem "pg", "~> 1.4"
end