-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGemfile
65 lines (53 loc) · 1.45 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.2.0'
# Backend
gem 'bcrypt', '~> 3.1'
gem 'faraday', '~> 1.4'
gem 'geocoder', '~> 1.6'
gem 'geokit-rails', '~> 2.3'
gem 'has_scope', '~> 0.8'
gem 'nokogiri', '~> 1.15'
gem 'puma', '~> 5.6'
gem 'rack', '>= 2.2.6'
gem 'rack-cors', '~> 1.1'
gem 'rails', '~> 6.1'
gem 'rexml'
gem 'sentry-rails'
# Elastic Search
gem 'searchkick', '~> 4.6'
# Pagination
gem 'kaminari', '~> 1.2'
# Database
gem 'pg', '~> 1.4'
# Frontend
gem 'active_model_serializers', '~> 0.10'
gem 'bootsnap', '>= 1.1', require: false
gem 'colorize', '~> 0.8'
group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'dotenv-rails', '~> 2.7'
gem 'guard-rspec', '~> 4.7'
gem 'rspec-rails', '~> 5.0'
gem 'rubocop-rails', '~> 2.10', require: false
gem 'rubocop-rspec', '~> 2.3', require: false
end
group :test do
gem 'database_cleaner', '~> 2.0'
gem 'factory_bot_rails', '~> 6.2'
gem 'faker', '~> 2.17'
gem 'rspec_junit_formatter', '~> 0.4'
gem 'shoulda-matchers', '~> 3.1'
gem 'simplecov', '~> 0.21', require: false
end
group :development do
gem 'listen', '~> 3.2'
gem 'spring', '~> 2.1'
gem 'spring-watcher-listen', '~> 2.0'
end
group :production do
gem 'cloudflare-rails', '~> 2.0'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]