forked from getlago/lago-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
134 lines (110 loc) · 2.79 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
122
123
124
125
126
127
128
129
130
131
132
133
134
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.3.4'
# Core
gem 'aasm'
gem 'activejob-uniqueness', require: 'active_job/uniqueness/sidekiq_patch'
gem 'bootsnap', require: false
gem 'clockwork', require: false
gem 'parallel'
gem 'puma', '~> 6.4'
gem 'rails', '~> 7.1.3.4'
gem 'redis'
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', branch: 'map-add-array-support'
gem 'discard', '~> 1.2'
gem 'kaminari-activerecord'
gem 'paper_trail', '~> 15.1'
gem 'pg'
gem 'ransack', '~> 4.1.0'
gem 'scenic'
gem 'with_advisory_lock'
gem 'strong_migrations'
# Currencies, Countries, Timezones...
gem 'bigdecimal'
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'
# HTTP and Multipart support
gem 'multipart-post'
gem 'mutex_m'
# Monitoring
gem 'newrelic_rpm'
gem 'opentelemetry-exporter-otlp'
gem 'opentelemetry-instrumentation-all'
gem 'opentelemetry-sdk'
gem 'sentry-rails', '~> 5.18.0'
gem 'sentry-ruby', '~> 5.18.0'
gem 'sentry-sidekiq', '~> 5.18.0'
# Storage
gem 'aws-sdk-s3', require: false
gem 'google-cloud-storage', require: false
# Templating
gem 'slim'
gem 'slim-rails'
# Kafka
gem 'karafka', '~> 2.4.0'
gem 'karafka-web', '~> 0.9.0'
# Taxes
gem 'valvat', require: false
# Data Export
gem 'csv', '~> 3.0'
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], require: false
gem 'dotenv'
gem 'i18n-tasks', git: 'https://github.com/glebm/i18n-tasks.git'
gem 'rspec-rails'
gem 'simplecov', require: false
gem 'webmock'
gem 'rubocop-rails'
gem 'rubocop-graphql', require: false
gem 'rubocop-performance', require: false
gem 'rubocop-rspec', require: false
gem 'rubocop-thread_safety', require: false
gem 'awesome_print'
end
group :test do
gem 'database_cleaner-active_record'
gem 'guard-rspec', require: false
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 "standard", require: false
gem 'annotate'
gem 'sass-rails'
gem 'uglifier'
gem 'ruby-lsp-rails', require: false
end