Sha256: 0d42ae3beb34aa315cc89e3bb100949cb14970c584ed17c18e07fd36902c0aad
Contents?: true
Size: 651 Bytes
Versions: 31
Compression:
Stored size: 651 Bytes
Contents
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('Gemfile', __dir__) require 'bundler/setup' # Set up gems listed in the Gemfile. # ------------------------------------------------------------ # Application code File.expand_path('lib', __dir__).tap do |lib| $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) end # ------------------------------------------------------------ # CI ENV['RAILS_ENV'] = 'test' if ENV['CI'] # ------------------------------------------------------------ # Custom tasks desc 'Run tests, check test coverage, check code style, check for vulnerabilities, build gem' task default: %i[coverage rubocop bundle:audit gem]
Version data entries
31 entries across 31 versions & 5 rubygems