28 строки
844 B
Ruby
28 строки
844 B
Ruby
source 'https://rubygems.org'
|
|
|
|
|
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
|
gem 'rails', '~> 5.0.0'
|
|
# Use Puma as the app server
|
|
gem 'puma', '~> 3.0'
|
|
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
|
|
gem 'jbuilder', '~> 2.5'
|
|
# Use ActiveModel has_secure_password
|
|
# gem 'bcrypt', '~> 3.1.7'
|
|
|
|
# Use Capistrano for deployment
|
|
# gem 'capistrano-rails', group: :development
|
|
|
|
group :development, :test do
|
|
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
|
|
gem 'byebug', platform: :mri
|
|
end
|
|
|
|
group :development do
|
|
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
|
|
gem 'web-console'
|
|
end
|
|
|
|
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|