Этот коммит содержится в:
Mattia Roccoberton
2025-03-22 09:08:36 +01:00
родитель a379e5c46f
Коммит 3245ca06ab
3 изменённых файлов: 5 добавлений и 0 удалений

1
.gitignore поставляемый
Просмотреть файл

@@ -6,6 +6,7 @@
/Gemfile.lock
/_misc/
/coverage/
/spec/dummy/db/*.sqlite3*
/spec/dummy/log/
/spec/dummy/storage/

Просмотреть файл

@@ -34,6 +34,7 @@ gem 'cuprite'
gem 'rspec_junit_formatter'
gem 'rspec-rails'
gem 'rspec-retry'
gem 'simplecov', require: false
# Linters
gem 'fasterer'

Просмотреть файл

@@ -4,6 +4,9 @@ require_relative 'spec_helper'
ENV['RAILS_ENV'] = 'test'
require 'simplecov'
SimpleCov.start 'rails'
require File.expand_path('dummy/config/environment.rb', __dir__)
abort('The Rails environment is running in production mode!') if Rails.env.production?