-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
84 lines (68 loc) · 2.41 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Ruby version
ruby '3.1.2'
# Core Rails gems
gem 'bootsnap', require: false # Reduces boot times through caching
gem 'httparty' # For API calls
gem 'importmap-rails', '~> 1.2.3' # Importmap support for Rails (Version for Geocoder)
# gem 'importmap-rails'
gem 'jbuilder'
gem 'pg' # PostgreSQL as the database for Active Record
gem 'puma', '~> 5.0' # Use Puma as the app server
gem 'rails', '~> 7.0.6'
gem 'sprockets-rails' # Asset pipeline
gem 'stimulus-rails' # Hotwire's Stimulus framework for Rails
gem 'turbo-rails' # Hotwire's Turbo library for Rails
# Redis and Kredis for caching & Action Cable
gem 'redis', '~> 4.0'
gem 'redis-rails'
# gem 'kredis'
# Front-end
gem 'autoprefixer-rails' # Parses CSS and adds vendor prefixes
gem 'bootstrap', '~> 5.2' # Bootstrap for styling
gem 'font-awesome-rails' # Font Awesome icons
gem 'sassc-rails' # Use SCSS for stylesheets
# Devise for authentication
gem 'devise', '~> 4.8'
# Pagination with kaminari
gem 'kaminari'
# Simple Form for forms
gem 'simple_calendar', '~> 2.4'
gem 'simple_form', '~> 5.1'
# Cloudinary for image and video storage
gem 'cloudinary'
# Maps
gem 'geocoder'
# APIs & Special Gems
gem 'moonphases'
gem 'ruby-openai'
# Action Mailer
gem 'letter_opener'
# Testing suite
group :development, :test do
gem 'debug', platforms: %i[mri mingw x64_mingw]
gem 'dotenv-rails' # Load environment variables from .env
gem 'factory_bot_rails' # Factory Bot for test data
gem 'faker'
gem 'pry-byebug' # Pry for debugging
gem 'rails-controller-testing'
gem 'rspec-rails' # RSpec for testing
gem 'rubocop', require: false
gem 'shoulda-matchers' # Additional matchers for RSpec
end
group :development do
gem 'web-console' # Rails console for the browser
# gem 'spring' # Speeds up development by keeping app running in the background
# gem 'rack-mini-profiler' # Displays speed badge for performance profiling
end
group :test do
gem 'capybara' # Capybara for integration testing
gem 'selenium-webdriver' # WebDriver for browsers
gem 'webdrivers' # Auto-updates webdrivers
end
# Optional gems for specific features
# gem 'bcrypt', '~> 3.1.7' # Use Active Model has_secure_password
# gem 'image_processing', '~> 1.2' # Use Active Storage variants for image processing
# gem 'tzinfo-data', platforms: %i[ mingw mswin x64_mingw jruby ] # Timezone data