-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGemfile
More file actions
141 lines (108 loc) · 4.04 KB
/
Gemfile
File metadata and controls
141 lines (108 loc) · 4.04 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.4.5"
# Bundle edge Rails instead: gem "rails", github: "rails/rails"
gem "rails", "~> 8.1.3"
# Use postgresql as the database for Active Record
gem "pg", "~> 1.6.2"
# Use Puma as the app server
gem "puma", "~> 7.2"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
#gem "jbuilder", "~> 2.7"
# Use Redis adapter to run Action Cable in production
gem "redis", "~> 5.4.1"
# Use Active Model has_secure_password
gem "bcrypt", "~> 3.1.16"
# Use Active Storage variant
# gem "image_processing", "~> 1.2"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", "~> 1.18.3", require: false
# Framework building reusable, tetable and encapsulated ViewComponents in Rails
# docs: viewcomponent.org
gem "view_component"
# Use SCSS for stylesheets
#gem "sass-rails", "~> 6.0.0"
# As of Rails 7.0, sprockets is optional
# Removed sprockets-rails - using import maps instead
# gem "sprockets-rails"
# gem "dartsass-sprockets"
# Use Propshaft for asset pipeline
gem "propshaft"
# Use dartsass-rails for standalone Sass processing
gem "dartsass-rails"
# Authentication
gem "devise", "~> 4.9.3"
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
gem 'rack-cors'
group :development, :test do
gem 'dotenv-rails'
gem "rspec-rails", "~> 8.0"
gem "shoulda-matchers", ">= 6.2.0"
gem "capybara"
gem "rails-controller-testing"
gem "factory_bot_rails", "~> 6.4.3"
gem 'simplecov', require: false
# Call "byebug" anywhere in the code to stop execution and get a debugger console
gem "byebug", platforms: [:mri, :windows]
end
# Faker gem - available in development/test, and in production when ALLOW_FAKE_DATA is set
gem "faker", "~> 3.6", groups: [:development, :test].tap { |groups|
groups << :production if ENV['ALLOW_FAKE_DATA'] == 'true'
}
group :development do
# Access an interactive console on exception pages or by calling "console" anywhere in the code.
gem "web-console", "~> 4.3.0"
gem "listen", "~> 3.10.0"
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
# gem "spring"
# powerful developer console.
gem "pry", "~> 0.16.0"
gem "pry-rails"
gem "pry-stack_explorer", "~> 0.6.2"
gem "pry-remote-reloaded"
gem "pry-byebug", "~> 3.12.0"
# Display performance information such as SQL time and flame graphs for each request in your browser.
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
gem "rack-mini-profiler", "~> 4.0"
gem "memory_profiler"
gem "stackprof"
# Replaces standard Rails' error page with a more useful error page
gem 'better_errors'
end
# Ruby code analyzer and formatter
group :rubocop, :development do
gem "rubocop", ">= 1.81.1", require: false
gem "rubocop-rails", require: false
gem "rubocop-rspec", require: false
gem "rubocop-performance", require: false
gem "rubocop-packaging", require: false
# security checks
gem "brakeman"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mri, :windows]
# Pagination
gem "pagy", "~> 43.5"
# Alternative approach to web apps development.
# https://github.com/hotwired/hotwire-rails
gem "hotwire-rails"
gem "turbo-rails"
gem "requestjs-rails"
# Colorize terminal output
gem "colorize"
# Adds support to inline SVG images
gem "inline_svg"
gem "haversine", git: "https://github.com/fabionl/haversine.git"
gem "geo_coord", require: "geo/coord"
gem 'geocoder', '~> 1.8'
# Adds JSON Web token control
gem "jwt"
# Import maps for ESM-based JavaScript handling
gem "importmap-rails"
# Aborts requests that are taking too long.
# Set the timeout by setting the RACK_TIMEOUT_SERVICE_TIMEOUT env var
# gem "rack-timeout"
# Http client for making API requests
gem "faraday", "~> 2.14.0"
# OpenStruct for easy data modeling - removed from standard library since ruby 3.5
gem "ostruct"