-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
107 lines (94 loc) · 2.72 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# read the .ruby-version file to get the ruby version
ruby File.read(".ruby-version").strip
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "~> 7.2.2"
# Use postgresql as the database for Active Record
gem "pg", "~> 1.5"
# Use Puma as the app server
gem "puma", "~> 6.4"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder", "~> 2.13"
# Use Redis adapter to run Action Cable in production
gem "redis", "~> 5.3"
# Use Active Model has_secure_password
# gem "bcrypt", "~> 3.1.7"
# Still using sprockets, might remove later
gem "sprockets-rails", require: "sprockets/railtie"
# Use Active Storage variant
gem "image_processing"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", ">= 1.4.4", require: false
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]
gem "devise", "~> 4.9"
gem "devise-i18n"
gem "omniauth"
gem "omniauth-google-oauth2"
gem "omniauth-rails_csrf_protection"
gem "activerecord-import"
gem "activerecord-postgis-adapter" # For PostGIS and Geo commands in Active record
gem "addressable"
gem "cssbundling-rails"
gem "diffy"
gem "gravtastic"
gem "high_voltage"
gem "http"
gem "inline_svg"
gem "jsbundling-rails"
gem "kaminari"
gem "pagy"
gem "paper_trail"
gem "phonelib"
gem "rails-i18n"
gem "rgeo-geojson" # For parsing geo json when importing from Geo Norge
gem "simple_form"
gem "simple_form-tailwind"
gem "stimulus-rails"
gem "tailwindcss-rails-webpacker"
gem "turbo-rails"
gem "validate_url"
group :production do
gem "aws-sdk-s3"
gem "newrelic_rpm"
end
group :development, :test do
# Call "byebug" anywhere in the code to stop execution and get a debugger console
gem "byebug", platforms: %i[mri mingw x64_mingw]
gem "dotenv-rails"
gem "fabrication"
gem "faker"
gem "parallel_tests"
gem "scout_apm"
end
group :development do
gem "annotate"
gem "foreman"
gem "guard"
gem "guard-livereload", require: false
gem "guard-rspec", require: false
gem "letter_opener"
gem "listen"
gem "overcommit"
gem "rack-livereload", require: false
gem "rack-mini-profiler"
gem "rails-erd"
gem "rails_real_favicon"
gem "rubocop", require: false
gem "rubocop-capybara", require: false
gem "rubocop-performance", require: false
gem "rubocop-rails", require: false
gem "rubocop-rspec", require: false
gem "rubocop-rspec_rails", require: false
gem "web-console"
end
group :test do
gem "capybara"
gem "capybara-playwright-driver"
gem "rspec-benchmark"
gem "rspec-rails"
gem "vcr"
gem "webmock"
end