69 lines
2 KiB
Ruby
69 lines
2 KiB
Ruby
source 'https://gems.sutty.nl'
|
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
|
|
ruby '~>2.7.0'
|
|
|
|
# Blazer: 'blazer', github: https://github.com/ankane/blazer
|
|
gem 'blazer'
|
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
|
|
gem 'rails', '~> 6.1.4'
|
|
# Use postgresql as the database for Active Record
|
|
gem 'pg', '~> 1.1'
|
|
# Use Puma as the app server
|
|
gem 'puma', '~> 5.0'
|
|
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
|
|
gem 'webpacker', '~> 5.0'
|
|
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
|
|
gem 'turbolinks', '~> 5'
|
|
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
|
gem 'jbuilder', '~> 2.7'
|
|
# Use Active Model has_secure_password
|
|
# gem 'bcrypt', '~> 3.1.7'
|
|
|
|
# Reduces boot times through caching; required in config/boot.rb
|
|
gem 'bootsnap', '>= 1.4.4', require: false
|
|
|
|
gem 'ssh_data'
|
|
|
|
gem 'anomaly_detection'
|
|
|
|
gem 'rails-i18n'
|
|
gem 'hamlit'
|
|
|
|
if ENV['RAILS_GROUPS']&.split(',')&.include? 'assets'
|
|
puts 'Loading assets'
|
|
gem 'sass-rails', '>= 6'
|
|
end
|
|
|
|
group :development, :test do
|
|
gem 'pry'
|
|
end
|
|
|
|
group :development do
|
|
gem 'brakeman'
|
|
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
|
gem 'web-console', '>= 4.1.0'
|
|
# Display performance information such as SQL time and flame graphs for each request in your browser.
|
|
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
|
|
gem 'rack-mini-profiler', '~> 2.0'
|
|
gem 'listen', '~> 3.3'
|
|
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
|
|
gem 'spring'
|
|
gem 'rubocop'
|
|
end
|
|
|
|
group :test do
|
|
gem 'database_cleaner'
|
|
gem 'factory_bot'
|
|
end
|
|
|
|
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
|
|
|
gem 'devise'
|
|
gem 'devise-i18n'
|
|
|
|
group :production do
|
|
gem 'lograge'
|
|
gem 'exception_notification'
|
|
end
|