-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathGemfile
38 lines (33 loc) · 888 Bytes
/
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
source 'https://rubygems.org'
ruby '3.3.0'
gem 'rails', '7.1.3.2'
gem 'tzinfo-data'
gem 'rails-html-sanitizer'
gem 'browser'
gem "sprockets", "<4"
gem 'uglifier', '>= 1.3.0'
gem 'rexml'
gem 'jbuilder', '~> 2.0'
gem 'json', '~> 2.7', '>= 2.7.1'
gem 'globalize'
gem "airbrake" # Online error reporting system
gem 'haml' # generate html from templates
gem 'mysql2' # The Mysql Driver
gem 'nokogiri'# XML/HTML Parsing library
gem 'ruby-saml'
gem "passenger"
gem 'loofah'
gem "ffi"
gem "rubyzip"
group :development, :test do
gem 'byebug'
gem 'awesome_print'
gem 'headless'
gem 'turn', :require => false
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end