-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
71 lines (56 loc) · 1.51 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
# frozen_string_literal: true
source "https://rubygems.org"
ruby "~> 3.2"
gem "config", "~> 5.5"
gem "dry-validation", "~> 1.10"
gem "forked", "~> 0.1.2"
gem "puma", "~> 6.4"
gem "rails", "~> 8.0.0"
gem "unicorn", "~> 6.0"
gem "active_record_upsert", github: "jesjos/active_record_upsert", ref: "5b2769eb5ec089665e5a099c151401d5ba14c104"
gem "bulk_insert", "~> 1.8"
gem "hutch", "~> 1.1"
gem "pg", "~> 1.2"
gem "dry-struct", "~> 1.7.0"
gem "dry-types", "~> 1.8.0"
gem "uuid4", "~> 1.3"
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
gem "draper", "~> 4.0"
gem "has_scope", "~> 0.8.0"
gem "oj"
gem "rails-assets-manifest", "~> 3.0", ">= 3.0.0"
gem "rails-rfc6570", "~> 3.0"
gem "responders", "~> 3.0"
gem "slim"
gem "ibsciss-middleware", "~> 0.4.2"
gem "influxdb"
gem "concurrent-ruby", "~> 1.1"
gem "mnemosyne-ruby", "~> 2.0"
gem "sentry-rails"
gem "sentry-ruby"
group :development do
gem "listen", "~> 3.9.0"
gem "web-console", ">= 3.3.0"
end
group :development, :test do
gem "capybara", "~> 3.32"
gem "selenium-webdriver"
gem "pry"
gem "pry-byebug"
gem "rspec-rails"
gem "rubocop", "~> 1.69.0"
gem "rubocop-capybara", "~> 2.21.0"
gem "rubocop-factory_bot", "~> 2.26.1"
gem "rubocop-performance", "~> 1.23.0"
gem "rubocop-rails", "~> 2.28.0"
gem "rubocop-rspec", "~> 3.3.0"
gem "rubocop-rspec_rails", "~> 2.30.0"
end
group :test do
gem "factory_bot_rails"
gem "rspec", "~> 3.9"
gem "timecop"
end