-
Notifications
You must be signed in to change notification settings - Fork 10
/
Gemfile
145 lines (114 loc) · 4.05 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# frozen_string_literal: true
# frozen_string_liseral: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.3.5"
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "~> 7.2"
# Use Puma as the app server
gem "puma", "~> 6.0"
# Use SCSS for stylesheets
gem "sass-rails", ">= 6"
# Use Terser as compressor for JavaScript assets
gem "terser"
# Transpile app-like JavaScript. Read more: https://github.com/shakacode/shakapacker
gem "shakapacker", "~> 8.0"
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem "turbo-rails"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder", "~> 2.7"
# reduces boot times through caching; required in config/boot.rb
gem "bootsnap", ">= 1.4.2", require: false
# Protect from rogue client
gem "rack-attack"
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Unicorn as the app server
# gem 'unicorn'
# Use sqlite3 as the database for Active Record
gem "sqlite3"
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
# gem "guard"
# gem "guard-minitest"
# Adds support for Capybara system testing and selenium driver
# gem "capybara"
# gem "selenium-webdriver"
# Compute test coverage
gem "simplecov", require: false
gem "simplecov-lcov", require: false
# rswag
gem "rspec-rails"
gem "rswag-specs", "~>2.11"
end
group :development do
# Use Capistrano for deployment
gem "capistrano", "~> 3.11", require: false
gem "capistrano-rails", "~> 1.4", require: false
gem "capistrano-rvm"
gem "capistrano-passenger"
gem "capistrano-maintenance", "~> 1.2", require: false
# 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"
gem "rubocop", require: false
gem "rubocop-rails_config"
end
group :staging, :production do
gem "concurrent-ruby"
gem "mysql2", "~>0.5"
# gem 'redis'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data" # , platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# required in dev but seems to be required also in production
gem "highline"
# Use jquery as the JavaScript library
gem "jquery-rails"
# Authentication/Authorization
gem "devise", ">=4.7.1"
gem "devise_ldap_authenticatable"
gem "rolify"
gem "pundit"
# support CORS
gem "rack-cors", ">=1.0.5"
# Analysis as a tree
gem "ancestry"
# Disciplines as a list
gem "acts_as_list"
# JSON serializers
gem "active_model_serializers", "~> 0.10.14"
# Background jobs
gem "sucker_punch"
# Zip
gem "rubyzip", "~>2.3.0"
# UI
gem "popper" # bootstrap dependency
gem "bootstrap", "~> 5.0"
gem "font-awesome-sass", "~> 6.5.0"
# thrift
gem "thrift", "~>0.20"
# Actiontext image processing
gem "image_processing", "~> 1.2"
# Document API
gem "rswag-api", "~>2.11"
# To cache XDSM json to get XDSM standalone html
gem "deepsort"
# Add sprockets with Rails 7
gem "sprockets-rails"
# Pagination
gem "pagy", "~> 9.0"
# Matrix
gem "matrix" # removed from stndard library in ruby 3.1
# No longer in standard library in ruby 3.4
# Add gems here to silence warnings
# /dtis-app/rvm/rubies/ruby-3.3.5/lib/ruby/3.3.0/kconv.rb:13: warning: /dtis-app/rvm/rubies/ruby-3.3.5/lib/ruby/3.3.0/x86_64-linux/nkf.so was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.4.0.
gem "nkf"
# /d/rlafage/workspace/WhatsOpt/test/test_helper.rb:3: warning: /dtis-app/rvm/rubies/ruby-3.3.5/lib/ruby/3.3.0/csv.rb was loaded from the standard library, but will no longer be part of the default gems starting from Ruby 3.4.0.
gem "csv"