-
-
Notifications
You must be signed in to change notification settings - Fork 186
/
Gemfile
67 lines (58 loc) · 1.5 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
source 'https://rubygems.org'
ruby '3.3.3'
gem 'aasm', '~> 5.5.0'
gem 'chartkick'
gem 'bootsnap'
gem 'dotenv', '~> 2.8.1'
gem 'google_drive'
gem 'groupdate'
gem 'honeybadger', '~> 5.2.0'
gem 'html-pipeline', '~> 2.14.3'
gem 'commonmarker', '~> 0.23.10'
gem 'net-sftp', '~> 4.0'
gem 'octicons_helper'
gem 'omniauth-orcid', '~> 2.1.1'
gem 'omniauth-rails_csrf_protection'
gem 'octokit'
gem 'pdf-reader', '~> 2.11.0'
gem 'pg', '~> 1.4.6'
gem 'pagy'
gem 'rails', '7.2.2'
gem "importmap-rails"
gem "turbo-rails"
gem "stimulus-rails"
gem 'responders'
gem 'sanitize', '~> 6.0.1'
gem 'searchkick'
gem 'elasticsearch', '<7.14'
gem 'uglifier', '4.2.0'
gem 'jbuilder', '~> 2.11'
gem 'issue'
gem 'active_link_to'
gem 'mini_racer'
gem 'sprockets-rails'
# Use Sass to process CSS
gem "sassc-rails"
# Use Puma as the app server
gem 'puma'
# Use Redis for Action Cable
gem "redis", "~> 5.0"
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'pry-byebug'
gem 'capybara', '~> 3.39'
gem 'factory_bot_rails', '~> 6.4.2'
gem 'rspec-rails', '~> 6.1.0'
gem 'selenium-webdriver'
gem 'webmock'
end
group :test do
gem 'vcr', '~> 6.2'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console', '~> 4.2.1'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-commands-rspec', group: :development
end