54 lines
1.4 KiB
Ruby
54 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
#
|
|
source 'https://rubygems.org'
|
|
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
|
|
|
|
ruby '2.5.5'
|
|
|
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails', branch: 'main'
|
|
gem 'rails', '~> 6.1.4', '>= 6.1.4.1'
|
|
# Use postgresql as the database for Active Record
|
|
gem 'pg', '~> 1.1'
|
|
# Use Puma as the app server
|
|
gem 'puma', '~> 5.0'
|
|
# Use SCSS for stylesheets
|
|
gem 'sass-rails', '>= 6'
|
|
# Use Active Model has_secure_password
|
|
# gem 'bcrypt', '~> 3.1.7'
|
|
|
|
# Config
|
|
gem 'dotenv-rails', require: 'dotenv/rails-now', groups: %i[development test]
|
|
gem 'settingslogic'
|
|
|
|
gem 'bunny'
|
|
gem 'foreman', '~> 0.87.0'
|
|
gem 'faraday'
|
|
gem 'rest-client'
|
|
|
|
source 'https://nexus.onsmartengineering.com/repository/rubygems-hosted' do
|
|
gem 'auth-client', '~> 2.1.0'
|
|
end
|
|
|
|
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.3'
|
|
end
|
|
|
|
group :test do
|
|
gem 'database_cleaner'
|
|
gem 'factory_bot_rails', '~> 6.1.0'
|
|
gem 'rspec', '~> 3.10.0'
|
|
gem 'rspec-rails', '~> 4.1.0'
|
|
gem 'shoulda-matchers', '~> 4.0'
|
|
gem 'simplecov', require: false
|
|
gem 'simplecov-cobertura', require: false
|
|
gem 'webmock'
|
|
end
|
|
|
|
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
|
|
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
|