-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
59 lines (52 loc) · 1.28 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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby File.read(".ruby-version").strip.gsub(/^ruby-/, "")
# Framework
gem "activegraph", "~> 11.3"
gem "neo4j-ruby-driver", "~> 4.4"
gem "puma", "~> 5.0"
gem "rails", "~> 7.0.7"
gem "active_model_serializers"
gem "redis", "~> 4.0"
gem "connection_pool"
gem "dry-initializer"
gem "whenever", require: false
gem "rails-i18n", "~> 7.0.0"
gem "activerecord-nulldb-adapter"
# Assets
gem "sassc-rails", "~> 2.1"
gem "sprockets-rails"
gem "vite_rails", "~> 3.0"
# View Extensions
gem "jbuilder"
gem "slim-rails", "~> 3.6"
gem "turbo-rails"
gem "rqrcode"
gem "breadcrumbs_on_rails"
# Eco system
gem "bootsnap", require: false
gem "gpgme"
gem "httparty"
gem "omniauth"
gem "omniauth-rails_csrf_protection"
gem "omniauth-github", github: "intridea/omniauth-github"
gem "omniauth-twitter2"
gem "omniauth-discord"
gem "elasticsearch-rails"
gem "elasticsearch-model"
gem "resolv"
group :development, :test do
gem "byebug", platforms: %i[mri mingw x64_mingw]
gem "debug", require: false
gem "rspec-rails", "~> 6.0.0"
gem "factory_bot_rails"
gem "ffaker"
gem "rubocop"
gem "rubocop-rails"
gem "i18n-tasks"
end
group :development do
gem "rack-mini-profiler"
gem "web-console"
gem "ruby-lsp-rails"
end