-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
107 lines (92 loc) · 2.66 KB
/
Gemfile
File metadata and controls
107 lines (92 loc) · 2.66 KB
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
source "https://rubygems.org"
ruby "4.0.0"
gem "rails"
gem "sprockets-rails"
gem "puma"
gem "thruster" # https://github.com/basecamp/thruster
# Rails
gem "importmap-rails"
gem "turbo-rails"
gem "jbuilder"
gem "bootsnap", require: false
gem "rack-cache", require: "rack/cache"
gem "net-pop", github: "ruby/net-pop"
# Monitoring
gem "yabeda-prometheus"
gem "yabeda-rails"
gem "yabeda-puma-plugin"
# login
gem "omniauth"
gem "omniauth-github"
gem "omniauth-google-oauth2"
gem "omniauth-osm-oauth2"
# Javascript
gem "gon"
gem "ostruct" # needed by 'gon', but not included in Ruby 3.5
gem "stimulus-rails"
# Databases
gem "redis", ">= 4.0.1"
# TODO: mongoid is not yet compatible with Rails 8.1:
# # https://www.mongodb.com/docs/drivers/compatibility/?driver-language=ruby&ruby-driver-framework=mongoid#ruby-on-rails-compatibility
gem "mongoid", ">= 9.0.2" # without version, bundler tries to install 8.1.6
gem "mongoid_rails_migrations"
gem "mongoid_includes"
# image uploads
# https://github.com/markevans/dragonfly (rdoc: https://rubydoc.info/github/markevans/dragonfly/)
# https://github.com/demersus/dragonfly-mongoid_data_store
gem "dragonfly"
gem "mini_magick"
gem "amazing_print"
gem "haml"
gem "redcarpet" # Markdown parser for docs
# taking screenshots with "rake maps:screenshots"
gem "capybara"
gem "capybara-screenshot"
gem "puppeteer-ruby"
gem "rszr"
# map + coordinates libraries
gem "rgeo"
gem "rgeo-geojson"
gem "rgeo-proj4"
gem "gpx", git: "https://github.com/digitaltom/gpx" # Ruby 4.0 fork
# resolving request IP addresses to coordinates
gem "maxminddb"
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug"
gem "dotenv-rails", require: "dotenv/load"
gem "listen"
gem "mongo_logs_on_roids"
gem "parallel_tests"
end
group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
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-thread_safety", require: false
gem "rubocop-rails-omakase", require: false
gem "rubocop-rubycw"
gem "rubycritic", require: false
gem "standard"
gem "brakeman"
gem "bundler-audit"
gem "web-console"
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
# gem "rack-mini-profiler"
end
group :test do
gem "factory_bot_rails"
gem "rspec"
gem "rspec-rails"
gem "rspec-wait"
gem "selenium-webdriver"
gem "simplecov"
gem "database_cleaner-mongoid"
gem "mongoid-rspec"
gem "cuprite"
gem "capybara_mock"
gem "table_print"
end