Newer
Older
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Infrastructure
gem 'pg', '~> 1.1'
gem 'aws-sdk-s3'
gem 'puma'
gem 'image_processing'
gem 'delayed_job_active_record'
gem 'delayed_job_web'
gem 'bootsnap', '>= 1.4.4', require: false
gem 'rails-i18n'
gem 'devise'
gem 'devise-i18n'
gem 'cancancan'
gem 'simple_form'
gem 'simple_form_password_with_hints'#, path: '../simple_form_password_with_hints'
gem 'simple_form_bs5_file_input'#, path: '../simple_form_bs5_file_input'
gem 'enum_help'
gem 'country_select'
gem 'breadcrumbs_on_rails'
gem 'simple-navigation'
gem 'kaminari'
# gem 'two_factor_authentication', path: '../two_factor_authentication'
gem 'summernote-rails', git: 'https://github.com/noesya/summernote-rails.git', branch: 'activestorage'
# gem 'summernote-rails', path: '../summernote-rails'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
gem 'web-console', '>= 4.1.0'
gem 'rack-mini-profiler', '~> 2.0'
gem 'listen', '~> 3.3'
gem 'spring'
gem 'annotate'
end
group :test do
gem 'capybara', '>= 3.26'
gem 'selenium-webdriver'
gem 'webdrivers'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]