-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathGemfile
More file actions
52 lines (48 loc) · 1.06 KB
/
Gemfile
File metadata and controls
52 lines (48 loc) · 1.06 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
source 'https://rubygems.org'
ruby '3.4.4'
gem 'rails', '~> 8.0.1'
gem 'activerecord-import'
gem 'csv'
gem 'pg'
gem 'wice_grid', github: 'yush-nh/wice_grid' # Grid viewer for tab-separated data view.
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'devise'
gem 'recaptcha'
gem "omniauth-rails_csrf_protection"
gem 'omniauth-google-oauth2'
gem 'net-http-persistent'
gem 'connection_pool'
gem 'ruby-stemmer'
gem 'validate_url'
gem 'daemons'
gem 'kaminari'
gem 'elasticsearch-model'
gem 'elasticsearch-rails'
gem 'rails-jquery-autocomplete'
gem 'rack-cors', :require => 'rack/cors'
gem 'clipboard-rails'
gem 'rails3-jquery-autocomplete'
gem 'i18n_data'
gem 'sprockets-rails'
gem 'uglifier'
gem 'bootsnap'
gem 'language_list', '~> 1.2', '>= 1.2.1'
gem 'string-similarity', '~> 2.1'
gem 'rubyzip'
gem 'webrick'
gem 'puma', '~> 6.0'
gem 'activejob-cancel'
gem 'sidekiq', '~> 8.0'
gem 'select2-rails'
gem "neighbor"
gem 'ollama-ai'
group :development do
gem 'dotenv-rails'
gem 'faker'
gem 'web-console'
end
group :development, :test do
gem 'rspec-rails'
gem 'factory_bot_rails'
end