-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
93 lines (66 loc) · 2.21 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '>= 3.1'
gem 'rexml' # no longer bundled with Ruby 3.0+
gem 'rails', '~> 6.1'
# Use Puma as the app server
gem 'puma', '~> 5.6'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.2'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
gem 'mysql2', group: [:production, :development]
# bundle exec rake doc:rails generates the API under doc/api.
# gem 'sdoc', '~> 0.4.2', group: :doc
# Reduces boot times through caching; required in config/boot.rb
# gem 'bootsnap', '>= 1.1.0', require: false
gem 'delayed_job'
gem 'delayed_job_active_record'
group :production do
gem 'dalli'
# For New Relic monitoring integration
gem 'newrelic_rpm'
end
group :development do
gem 'listen', '~> 3.0'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
gem 'byebug', platform: :mri
end
group :test do
gem 'capybara', '>= 2.15', '< 4.0' # for JS integration testing
gem 'jasmine-rails' # for JS unit testing
gem 'poltergeist' # for PhantomJS-based testing with capybara
gem 'sqlite3'
gem 'test-unit', '~> 3.2'
gem 'selenium-webdriver'
# Easy installation and use of chromedriver to run system tests with Chrome
gem 'chromedriver-helper'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'exception_notification'
# For CAS authentication
gem 'rubycas-client', git: 'https://github.com/rubycas/rubycas-client.git'
gem 'ejs'
# For authorization
gem 'pundit'
# For LDAP & Active Directory support
gem 'net-ldap', require: false
gem 'js-routes'
# For scheduled tasks
gem 'whenever', require: false
# For background processing
gem 'daemons'
gem 'rack-timeout'
# For AWS DynamoDB support, used in activity logs
gem 'aws-sdk-dynamodb', '~> 1.6'
gem 'aws-sdk-core', '~> 3.0'
gem 'mechanize', require: false
# DocuSign user management
gem 'docusign_esign', '~> 3.20'