Sha256: 286cccab30d860dc77b86c9f2a133b350f94e97bf55db30de73c8941ac114360

Contents?: true

Size: 611 Bytes

Versions: 4

Compression:

Stored size: 611 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, build gem'
task default: %i[coverage rubocop gem]

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
berkeley_library-util-0.1.9 Rakefile
berkeley_library-util-0.1.8 Rakefile
berkeley_library-util-0.1.7 Rakefile
berkeley_library-util-0.1.6 Rakefile