-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
76 lines (70 loc) · 2.04 KB
/
Copy pathGemfile
File metadata and controls
76 lines (70 loc) · 2.04 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.4.10'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
gem 'rails', '~> 7.2.3'
gem 'pg', '~> 1.6'
gem 'puma', '~> 7.2.0'
gem 'redis', '~> 5.4'
gem 'bcrypt', '~> 3.1.22'
gem 'bootsnap', '>= 1.4.4', require: false
gem 'rexml', '~> 3.4.0'
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'wkhtmltopdf-binary'
gem 'pdfkit'
gem 'money'
gem 'countries', :require => 'countries/global'
gem 'e_invoice', github: 'internetee/e_invoice', branch: :master
gem 'directo', github: 'internetee/directo', branch: :master
gem 'lhv', github: 'internetee/lhv', branch: :master
gem 'strong_migrations'
gem 'figaro'
gem 'capistrano'
gem 'capistrano-rails'
gem 'capistrano-passenger'
gem 'capistrano-rbenv'
gem 'jwt'
gem "hotwire-rails"
gem 'importmap-rails'
gem 'sprockets-rails'
gem 'pg_search'
gem "pagy", "~> 9.4"
gem 'simpleidn', '0.2.3'
gem 'faraday'
gem 'dry-initializer', '~> 3.2.0'
gem 'dry-validation'
gem 'net-smtp', require: false
gem 'net-imap', require: false
gem 'net-pop', require: false
gem "apipie-rails", "~> 1.5.1"
gem 'omniauth', '>=2.0.0'
gem 'omniauth-rails_csrf_protection'
gem 'omniauth-tara', github: 'internetee/omniauth-tara'
gem 'i18n-tasks', '~> 1.1.0'
gem 'uri', '>= 1.0.4'
gem 'syslog'
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
# gem 'rack-cors'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'rspec-rails'
gem 'factory_bot_rails'
gem 'rubocop-rails', require: false
gem 'bundle-audit', require: false
gem 'brakeman', require: false
gem 'observer' # Required for Ruby 3.4+
gem 'abbrev' # Required for Ruby 3.4+ (brakeman dependency)
end
group :development do
gem 'listen', '~> 3.3'
# gem 'spring'
end
group :test do
gem 'faker'
gem 'selenium-webdriver'
gem 'simplecov', '0.22.0', require: false
gem 'webdrivers'
gem 'webmock'
gem 'database_cleaner'
gem 'database_cleaner-active_record'
end