-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
39 lines (34 loc) · 1.14 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.5.1'
gem 'rails', '~> 5.2.0'
gem 'pg', '1.0.0'
gem 'puma', '~> 3.11'
gem 'uglifier', '>= 1.3.0'
gem 'devise', '4.4.3'
gem 'simple_form', '4.0.1'
gem 'fullcalendar-rails', '3.9.0.0'
gem 'momentjs-rails', '2.20.1'
gem 'jquery-rails', '4.3.3'
gem 'jquery-ui-rails', '6.0.1'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
gem 'money-rails', '1.11.0'
gem 'paranoia', '~> 2.2'
gem 'pg_search', '2.1.2'
gem 'paper_trail', '9.2.0'
gem 'faker', '1.8.7'
gem 'cocoon', '1.2.11'
gem 'draper', '3.0.1'
gem 'pundit', '2.0.0'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false
group :development do
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'guard' # NOTE: this is necessary in newer versions
gem 'guard-minitest'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]