-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
126 lines (89 loc) · 2.36 KB
/
Gemfile
File metadata and controls
126 lines (89 loc) · 2.36 KB
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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'rails', '~>8.0'
gem 'commonmarker'
gem 'activerecord-session_store'
gem 'responders'
gem 'bootsnap', require: false
gem 'acts-as-taggable-on'
gem 'devise'
gem 'formtastic'
gem 'nokogiri'
gem 'country_select', '~> 9.0'
gem 'pg'
# gem 'doi', :git => 'git://github.com/kf8a/doi.git'
gem 'awesome_nested_set'
gem 'jquery-rails'
# Use JavaScript with ESM import maps [https://github.com/rails/importmap-rails]
gem "importmap-rails"
gem 'propshaft'
# Hotwire's SPA-like page accelerator [https://turbo.hotwired.dev]
gem "turbo-rails"
# Hotwire's modest JavaScript framework [https://stimulus.hotwired.dev]
gem "stimulus-rails"
# Build JSON APIs with ease [https://github.com/rails/jbuilder]
# gem "jbuilder"
gem 'workflow'
gem 'workflow-activerecord'
gem 'parslet'
# for creating bibtex formatted citations
gem 'bibtex-ruby'
gem "connection_pool", "<3.0"
gem 'dalli'
gem 'ostruct'
gem 'has_scope' # , '<0.6'
gem 'ris_parser', git: 'https://github.com/kf8a/ris_parser.git'
gem 'mysql2'
gem 'thinking-sphinx'
gem 'aws-sdk-s3', '~> 1'
gem 'rake', '>= 12.3.3'
gem 'sitemap_generator'
gem 'puma'
gem 'rexml'
group :production, :staging do
gem 'exception_notification'
end
gem 'cssbundling-rails'
gem 'csv'
# gem 'sass-rails', '>= 5'
gem 'prometheus-client'
# gem 'web-console', group: :development
gem 'faraday'
gem 'faraday-follow_redirects'
# gem 'omniauth'
gem 'omniauth-glbrc', git: "git@github.com:kf8a/omniauth-glbrc.git"
# try to update to omniauth 2.0
# gem 'omniauth-glbrc', path: "../omniauth-glbrc"
gem 'omniauth-rails_csrf_protection'
group :development do
gem 'awesome_print'
gem 'bcrypt_pbkdf'
gem 'capistrano', require: false
gem 'capistrano3-puma' # , github: "seuros/capistrano-puma"
gem 'capistrano-bundler', require: false
gem 'capistrano-rails'
gem 'ed25519'
gem 'listen'
gem 'rails-erd'
gem 'rbnacl'
gem 'rbnacl-libsodium'
gem 'rubocop', require: false
gem 'rubocop-rails'
gem 'rubocop-thread_safety'
gem "tidewave"
end
group :development, :test do
gem 'minitest'
# gem 'minitest-reporters', '>= 0.5.0'
gem 'rspec-its'
gem 'rspec-rails'
gem 'test-unit'
end
group :test do
gem 'factory_bot_rails'
gem 'rails-controller-testing'
gem 'shoulda', '>= 3.0'
gem 'shoulda-matchers' # to use rspec like syntax
gem 'database_cleaner'
end
# gem "tailwindcss-rails"