forked from getlago/lago-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
121 lines (98 loc) · 2.47 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
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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.2.3'
# Core
gem 'aasm'
gem 'activejob-uniqueness', require: 'active_job/uniqueness/sidekiq_patch'
gem 'bootsnap', require: false
gem 'clockwork', require: false
gem 'puma', '~> 6.4'
gem 'rails', '~> 7.0.8'
gem 'sidekiq'
# Security
gem 'bcrypt'
gem 'googleauth', '~> 1.11.0'
gem 'jwt'
gem 'oauth2'
gem 'rack-cors'
# Database
gem 'after_commit_everywhere'
gem 'clickhouse-activerecord', git: 'https://github.com/getlago/clickhouse-activerecord.git'
gem 'discard', '~> 1.2'
gem 'kaminari-activerecord'
gem 'paper_trail'
gem 'pg'
gem 'ransack', '~> 4.0.0'
gem 'scenic'
gem 'with_advisory_lock'
# Currencies, Countries, Timezones...
gem 'countries'
gem 'money-rails'
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
# GraphQL
gem 'graphql'
gem 'graphql-pagination'
# Payment processing
gem 'adyen-ruby-api-library'
gem 'gocardless_pro', '~> 2.34'
gem 'stripe'
# Analytics
gem 'activejob-traceable'
gem 'analytics-ruby', '~> 2.4.0', require: 'segment/analytics'
# Logging
gem 'lograge'
gem 'logstash-event'
# Multipart support
gem 'multipart-post'
# Monitoring
gem 'newrelic_rpm'
gem 'opentelemetry-exporter-otlp'
gem 'opentelemetry-instrumentation-all'
gem 'opentelemetry-sdk'
gem 'sentry-rails', '~> 5.12.0'
gem 'sentry-ruby', '~> 5.12.0'
gem 'sentry-sidekiq', '~> 5.12.0'
# Storage
gem 'aws-sdk-s3', require: false
gem 'google-cloud-storage', require: false
# Templating
gem 'slim'
gem 'slim-rails'
# Kafka
gem 'karafka'
# Taxes
gem 'valvat', require: false
group :development, :test, :staging do
gem 'factory_bot_rails'
gem 'faker'
gem 'timecop'
end
group :development, :test do
gem 'byebug'
gem 'clockwork-test'
gem 'debug', platforms: %i[mri mingw x64_mingw]
gem 'dotenv'
gem 'i18n-tasks', git: 'https://github.com/glebm/i18n-tasks.git'
gem 'rspec-rails'
gem 'simplecov', require: false
gem 'webmock'
end
group :test do
gem 'database_cleaner-active_record'
gem 'rspec-graphql_matchers'
gem 'shoulda-matchers'
end
group :development do
gem 'bullet'
gem 'coffee-rails'
gem 'graphiql-rails', git: 'https://github.com/rmosolgo/graphiql-rails.git'
gem 'rubocop-graphql', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'rubocop-thread_safety', require: false
gem 'sass-rails'
gem 'uglifier'
gem 'ruby-lsp-rails', require: false
end