31 lines
1 KiB
Ruby
31 lines
1 KiB
Ruby
source 'https://rubygems.org'
|
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
|
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
|
gem 'rails', '~> 6.0.0'
|
|
# Use Puma as the app server
|
|
gem 'puma', '~> 3.11'
|
|
# 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.2', require: false
|
|
|
|
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin AJAX possible
|
|
# gem 'rack-cors'
|
|
|
|
gem 'psenv-rails', path: '../../'
|
|
|
|
group :development, :test do
|
|
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
|
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
|
|
end
|
|
|
|
group :development do
|
|
gem 'listen', '>= 3.0.5', '< 3.2'
|
|
end
|
|
|
|
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|