-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathGemfile
More file actions
85 lines (64 loc) · 1.65 KB
/
Gemfile
File metadata and controls
85 lines (64 loc) · 1.65 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
source "https://rubygems.org"
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "8.1.0.rc1"
# The modern asset pipeline for Rails [https://github.com/rails/propshaft]
gem "propshaft"
# Use sqlite3 as the database for Active Record
gem "sqlite3", ">= 2.1"
# Use the Puma web server [https://github.com/puma/puma]
gem "puma", ">= 5.0"
# Use Thruster w/ AnyCable
gem "anycable-thruster"
gem "anycable-rails"
# Use the database-backed adapters for Active Job
gem "solid_queue"
gem "mission_control-jobs"
# Active Record extensions
gem "store_model"
gem "hotwire-rails"
# The only viable asset pipeline for Rails [https://vite-ruby.netlify.app/guide/rails.html]
gem "vite_rails"
# https://github.com/yaroslav/bundlebun
gem "bundlebun"
# Storybook
gem "lookbook", require: false
gem "view_component-contrib"
# Configuration management
gem "anyway_config"
gem "after_commit_everywhere"
gem "nanoid"
# Integrations
gem "httparty"
gem "ruby_llm", "~> 1.9.0"
# Admin panel [https://docs.avohq.io/]
gem "avo", ">= 3.2"
gem "friendly_id", "~> 5.5.0"
gem "csv"
# Freeze string literals automatically
gem "freezolite"
gem "bootsnap", require: false
group :production do
gem "sentry-ruby", "~> 5.15"
gem "sentry-rails", "~> 5.15"
end
group :development do
gem "overmind", require: false
gem "lefthook", require: false
gem "letter_opener_web"
end
group :development, :test do
gem "debug"
end
group :development do
eval_gemfile "gemfiles/rubocop.gemfile"
end
group :test do
gem "rspec-rails"
gem "factory_bot_rails"
gem "faker"
gem "fuubar"
gem "test-prof"
gem "capybara"
gem "capybara-email"
gem "cuprite"
end