-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gemfile
61 lines (54 loc) · 1.62 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
source "https://rubygems.org"
ruby "3.3.0"
gem "bcrypt", "~> 3.1.7"
gem "bootsnap", require: false
gem 'feedjira', '~> 3.2', '>= 3.2.3'
gem 'haml', '~> 6.3'
gem "importmap-rails"
gem "jbuilder", '~>2.13'
gem 'jsonb_accessor', '~> 1.4'
gem 'pagy', '~>9'
gem "pg", "~> 1.5"
gem 'positioning', '~> 0.3.0'
gem 'pr_geohash', '~>1.0.0'
gem "puma", ">= 5.0"
gem "rails", "~> 7.2"
gem "redis", ">= 4.0.1"
gem 'rest-client', '~> 2.1'
gem 'ruby-protocol-buffers', '~>1.6.1' # https://github.com/codekitchen/ruby-protocol-buffers
gem "sentry-rails"
gem "sentry-ruby"
gem 'sidekiq', '~>7.3.2'
gem "sprockets-rails"
gem "stimulus-rails"
gem 'store_model', '~> 4.1'
gem 'stripe', '~>12.4'
gem "tailwindcss-rails"
gem "turbo-rails"
gem 'varint', '~>0.1.1' # needed for protobuf
gem 'view_component', '~> 3.17'
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug"
gem 'factory_bot_rails', '~>6.4.3'
gem "rspec-rails", '~>7.0.1'
gem 'rubocop', require: false
gem 'rubocop-rails', require: false
end
group :development do
# Use console on exceptions pages [https://github.com/rails/web-console]
gem "web-console"
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
# gem "rack-mini-profiler"
# Speed up commands on slow machines / big apps [https://github.com/rails/spring]
# gem "spring"
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara"
gem 'rails-controller-testing'
gem "selenium-webdriver"
gem 'simplecov'
gem "vcr", '~>6.3.1'
gem 'webmock', '~>3.24.0'
end