This repository has been archived by the owner on Oct 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
139 lines (111 loc) · 2.94 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.3'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 6.1'
# Use sqlite3 as the database for Active Record
# gem 'sqlite3', '~> 1.4'
gem 'pg'
# Use Puma as the app server
gem 'puma', '~> 5.6'
gem 'sd_notify', '>= 0.1.0'
# Use SCSS for stylesheets
gem 'sass-rails', '>= 6'
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem 'webpacker', '~> 5.0'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.7'
gem 'multi_json'
gem 'oj'
gem 'rubyzip'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.4.2', require: false
# Kithe
gem 'bootstrap', '~> 4.0'
gem 'cocoon', '~> 1.2'
gem 'jquery-rails', '~> 4.4'
gem 'kithe', '~> 2.0.0'
gem 'qa', '~> 5.0'
gem 'ruby-progressbar'
gem 'simple_form', '~> 5.0'
# Dotenv
gem 'dotenv-rails'
# Auth
gem 'devise', '~> 4.7.0'
gem 'devise-bootstrap-views', '~> 1.0'
gem 'devise_invitable', '~> 2.0.0'
gem 'sidekiq', '~> 6.4'
# Versioning
gem 'paper_trail'
# ActiveStorage
gem 'active_storage_validations'
# State
gem 'statesman', '~> 7.1.0'
# API
gem 'httparty'
# Feedback
gem 'exception_notification', '~> 4.4.0'
# Awesome Print
gem 'amazing_print'
gem 'haml', '~> 5.2.0'
# Advanced Search
gem 'chosen-rails'
# Config
gem 'config'
# Noticed
gem 'noticed', '~> 1.4'
# Reporting
gem 'blazer'
gem 'chronic'
gem 'i18n-js', '~> 3.0'
gem 'momentjs-rails'
gem 'rsolr'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
# gem 'inquisition', github: 'rubygarage/inquisition', branch: 'develop'
gem 'json_schemer'
gem 'solr_wrapper', '~> 3.1'
end
group :development do
gem 'foreman'
gem 'letter_opener'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'rubocop', '~> 0.86', require: false
gem 'rubocop-minitest', require: false
gem 'rubocop-rails', require: false
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
end
group :test do
gem 'capybara'
gem 'capybara-screenshot'
gem 'm', '~> 1.5.0'
gem 'minitest'
gem 'minitest-ci', '~> 3.4.0'
gem 'minitest-reporters'
gem 'shoulda-context'
gem 'simplecov', require: false
gem 'webdrivers'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
# Bookmarks
gem 'inline_svg'
gem 'pagy', '~> 3.8'
# Solr Backup/Restore
gem 'faraday'
# Version Diffs
gem 'hashdiff'
# Rgeo
gem 'rgeo'