54 lines
1.3 KiB
Ruby
54 lines
1.3 KiB
Ruby
source 'https://rubygems.org'
|
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
|
|
ruby '2.6.3'
|
|
|
|
gem 'jbuilder', '~> 2.7'
|
|
gem 'pg', '~> 1.1' # dnf install libpq-devel
|
|
gem 'puma', '~> 4.1'
|
|
gem 'rails', '~> 6.0.1'
|
|
gem 'rails-jquery-autocomplete'
|
|
gem 'sass-rails', '>= 6'
|
|
gem 'turbolinks', '~> 5'
|
|
gem 'webpacker', '~> 4.0'
|
|
# Use Redis adapter to run Action Cable in production
|
|
# gem 'redis', '~> 4.0'
|
|
# Use Active Model has_secure_password
|
|
# gem 'bcrypt', '~> 3.1.7'
|
|
|
|
# Use Active Storage variant
|
|
# gem 'image_processing', '~> 1.2'
|
|
|
|
gem 'autoprefixer-rails'
|
|
gem 'bootsnap', '>= 1.4.2', require: false
|
|
|
|
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]
|
|
gem 'factory_bot_rails'
|
|
end
|
|
|
|
group :development do
|
|
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
|
|
gem 'listen', '>= 3.0.5', '< 3.2'
|
|
gem 'pry'
|
|
gem 'pry-rails'
|
|
gem 'spring'
|
|
gem 'spring-watcher-listen', '~> 2.0.0'
|
|
gem 'web-console', '>= 3.3.0'
|
|
gem 'yard'
|
|
end
|
|
|
|
group :test do
|
|
gem 'capybara', '>= 2.15'
|
|
gem 'rails-controller-testing'
|
|
gem 'rspec-rails', '4.0.0.beta3'
|
|
gem 'selenium-webdriver'
|
|
gem 'simplecov', require: false
|
|
gem 'webdrivers'
|
|
end
|
|
|
|
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|
|
|
|
gem 'org-ruby'
|