-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathGemfile
70 lines (61 loc) · 1.64 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
68
69
70
source 'https://rubygems.org'
ruby '3.1.2'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem 'rails', '~> 7.0.3'
gem 'bootstrap-sass', '~> 3.4.1'
gem 'haml', '~> 5.2.2'
gem 'pg'
gem 'puma', '~> 5.6.0'
gem 'sass-rails', '~> 6.0.0'
gem 'uglifier', '>= 4.2.0'
gem 'coffee-rails', '~> 5.0.0'
gem 'jquery-rails'
gem 'turbolinks', '~> 5.2.1'
gem 'jbuilder', '~> 2.11.2'
gem 'bcrypt'
gem 'recaptcha', require: 'recaptcha/rails'
gem 'rqrcode', '~> 2.1.0'
gem 'kaminari'
gem 'devise', '>= 4.8.0'
gem 'omniauth'
gem 'omniauth-google-oauth2'
gem 'omniauth-rails_csrf_protection', '~> 1.0'
gem 'bootsnap'
gem 'mini_magick', '~> 4.5', '>= 4.5.1'
gem 'active_storage_validations'
gem 'aws-sdk-s3'
gem 'image_processing', '~> 1.2'
gem 'leaflet-rails', '~> 1.7.0'
gem 'oauth2', '= 1.4.9'
group :test do
gem 'simplecov', '~> 0.21.2', require: false
end
group :development, :test do
gem 'byebug', platform: :mri
gem 'rspec-rails', '~> 5.1.0'
gem 'rspec-mocks', '~> 3.11.0'
gem 'shoulda-matchers', '~> 5.1.0'
gem 'capybara'
gem 'factory_bot_rails', '~> 6.2.0'
gem 'dotenv-rails'
gem 'webdrivers'
gem 'selenium-webdriver'
gem 'foreman', '~> 0.87.2'
gem 'haml-rails', '~> 2.0.1'
end
group :development do
gem 'web-console', '>= 4.2.0'
gem 'listen', '~> 3.7.0'
gem 'spring', '~> 4.0.0'
gem 'guard'
gem 'guard-rspec', require: false
gem 'spring-commands-rspec'
end
group :production do
gem 'airbrake'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]