-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
67 lines (59 loc) · 1.37 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'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '~> 3.4.1'
gem 'rails', '~> 8.0.1'
gem 'acts-as-taggable-on', github: 'mbleigh/acts-as-taggable-on'
gem 'autoprefixer-rails'
gem 'best_in_place', github: 'mmotherwell/best_in_place'
gem 'bootsnap', require: false
gem 'bootstrap-sass'
gem 'coffee-rails'
gem 'config'
gem 'dotiw', '< 6'
gem 'exifr'
gem 'hamlit'
gem 'image_processing'
gem 'jbuilder'
gem 'jquery-rails'
gem 'kaminari'
gem 'listen'
gem 'local_time'
gem 'mail'
gem 'mini_magick'
gem 'mysql2'
gem 'omniauth-github'
gem 'omniauth-rails_csrf_protection'
gem 'puma', '~> 6'
gem 'psych', '< 6' # Necessary since update to Rails 7.0.3 and Ruby 3.1.2
gem 'rack-protection'
gem 'react-rails'
gem 'responders'
gem 'rqrcode'
gem 'sassc-rails'
gem 'secure_headers'
gem 'sidekiq', '~> 7.3.8'
gem 'sinatra'
gem 'sprockets', '~> 4'
gem 'uglifier'
gem 'webpacker'
gem 'yaml_db'
group :development do
# gem 'better_errors'
# gem 'binding_of_caller'
# gem 'bullet'
gem 'foreman'
gem 'spring'
gem 'web-console'
end
group :test do
gem 'capybara'
# gem 'coveralls_reborn', require: false
gem 'minitest-spec-rails'
gem 'rexml' # For selenium-webdriver in Ruby 3
gem 'selenium-webdriver'
gem 'webdrivers'
end
source 'https://rails-assets.org' do
gem 'rails-assets-jquery', '~> 2.2.4'
gem 'rails-assets-seiyria-bootstrap-slider'
end