-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGemfile
More file actions
111 lines (103 loc) · 2.6 KB
/
Copy pathGemfile
File metadata and controls
111 lines (103 loc) · 2.6 KB
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
source 'https://rubygems.org'
ruby '3.2.2'
# setup
gem 'bootsnap', require: false
gem 'rails', '~> 7.0.8'
gem 'logger'
gem 'pg', '~> 1.1'
gem 'active_model_serializers'
gem "sprockets-rails"
gem 'puma'
gem 'polylines'
gem "rolify"
gem 'caxlsx'
gem 'caxlsx_rails'
gem 'flag-icons-rails'
gem 'uglifier'
gem 'coffee-rails'
gem 'pdf-reader'
gem 'nokogiri', '1.12.5'
gem "loofah"
gem 'jquery-rails'
gem 'mailboxer', github: 'regedarek/mailboxer', branch: 'kw_app'
gem 'rails-jquery-tokeninput'
gem 'mailgun-ruby', '~>1.1.6'
gem 'sass-rails'
gem 'griddler'
gem "griddler-sendgrid"
gem 'sendgrid-ruby'
gem 'nested_form_fields'
gem 'trix-rails', require: 'trix'
gem 'friendly_id', '~> 5.2.4'
gem 'foundation-rails', '~> 6.4.3.0'
gem 'foundation-icons-sass-rails'
gem 'airbrake'
gem 'high_voltage'
gem 'devise', '~> 4.8.1'
gem 'paper_trail'
gem 'slim-rails'
gem 'ransack', '2.5.0'
gem 'searchkick'
gem 'workflow', '~> 1.2'
gem 'money'
gem 'virtus'
gem 'kaminari'
gem 'pagy'
gem 'whenever', require: false
gem 'rubyzip', '>= 1.2.1'
gem 'attributed_object', require: false, git: 'https://github.com/jgroeneveld/attributed_object.git'
gem 'carrierwave', '~> 3.1.2'
gem 'fog-openstack', '~> 1.1.5', require: "fog/openstack"
gem 'mimemagic', github: 'mimemagicrb/mimemagic', ref: '01f92d86d15d85cfd0f20dabd025dcbd36a8a60f'
gem 'google_calendar'
gem 'koala'
gem 'strava-ruby-client'
gem 'prawn-rails'
gem 'chronic'
gem 'cancancan', '~> 3.3.0'
gem 'select2-foundation'
# Dry-rb
gem 'dry-core'
gem 'dry-configurable', '1.2.0'
gem 'dry-container'
gem 'dry-equalizer'
gem 'dry-logic'
gem 'dry-matcher', '1.0.0'
gem 'dry-monads', '~> 1.3'
gem 'dry-schema', '~> 1.13.4'
gem 'dry-validation', '~> 1.0'
gem 'dry-types'
gem 'dry-struct', require: false
gem 'sidekiq'
gem 'sidekiq-failures'
gem 'appsignal'
gem 'jqplot-rails'
group :development do
gem 'listen'
gem 'brakeman', require: false
gem "ffi", "< 1.17.0"
gem "rbnacl-libsodium"
gem 'rbnacl'
gem 'net-ssh', '>= 7.0'
gem 'thor', '>= 1.2'
gem 'ed25519', '>= 1.2', '< 2.0'
gem 'bcrypt_pbkdf', '>= 1.0', '< 2.0'
gem 'annotate', git: 'https://github.com/ctran/annotate_models.git'
end
group :development, :test do
gem 'rspec-rails', '~> 7.1'
gem 'factory_bot_rails', '~> 6.4'
gem 'faker', '~> 3.5'
gem 'shoulda-matchers', '~> 6.4'
gem 'timecop', '~> 0.9'
gem 'byebug'
gem 'spring'
gem 'webmock', '~> 3.24'
gem 'playwright-ruby-client'
end
group :test do
gem 'database_cleaner-active_record', '~> 2.2'
gem 'simplecov', '~> 0.22', require: false
end
gem 'thruster', "0.1.8", require: false, group: [:development, :production]
gem "kamal", "~> 2.10", require: false, group: [:tools]