-
Notifications
You must be signed in to change notification settings - Fork 67
/
Gemfile
42 lines (35 loc) · 790 Bytes
/
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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.3"
gem "rails", "~> 7"
gem "active_hash"
gem "activerecord-postgis-adapter"
gem "geocoder"
gem "jbuilder"
gem "pg"
gem "puma"
gem "redis"
gem "sentry-raven"
gem "turbolinks", "~> 5"
gem "yamllint"
gem "importmap-rails"
gem "cssbundling-rails"
gem "sprockets-rails"
group :development, :test do
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
gem "dotenv-rails"
gem "factory_bot_rails"
gem "rspec-rails"
gem "standard"
gem "listen"
end
group :development do
gem "web-console", ">= 3.3.0"
end
group :test do
gem "capybara", ">= 2.15"
gem "launchy"
gem "rails-controller-testing"
gem "rspec_junit_formatter"
gem "utensils", github: "balvig/utensils"
end