-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
62 lines (48 loc) · 1.23 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '~> 3.1.0'
gem 'rails', '~> 7.0.8'
gem 'pg'
gem 'puma', '~> 6.5'
gem 'sass-rails', '~> 6.0', '>= 6.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 5.0', '>= 5.0.0'
gem 'turbolinks', '~> 5'
gem 'bootsnap', '>= 1.1.0', require: false
gem 'bootstrap', '~> 4.6.2'
gem 'bootstrap-sass'
gem 'jquery-rails', '>= 4.4.0'
gem 'bh', '>= 1.3.6'
gem 'btgen', '>= 0.1.0'
gem 'chartkick'
gem 'devise', '>= 4.8.0'
gem 'devise-i18n', '>= 1.10.1'
gem 'rack-cors'
gem 'sidekiq', '~>7.3.7'
gem 'cocoon'
gem 'cancancan'
gem 'simple_form', '>= 5.1.0'
gem 'rails-i18n' , '>= 6.0.0'
gem 'net-imap'
gem 'net-smtp'
gem 'net-pop'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'factory_bot_rails', '>= 6.4.3'
gem 'pry'
gem 'rspec-rails', '~> 7.1.0'
gem 'rubocop'
gem 'dotenv-rails', '>= 2.7.6'
gem 'cypress-rails', '>= 0.5.3'
end
group :test do
gem 'shoulda-matchers', '>= 4.1.2'
gem 'simplecov', require: false
end
group :development do
gem 'web-console', '>= 4.2.0'
gem 'listen', '>= 3.0.5', '< 3.10'
gem 'spring'
gem 'bullet'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]