Sha256: 63688e049ad49df71f896bc18d396a4947e214a6b1e912916a51b0b188d18227

Contents?: true

Size: 613 Bytes

Versions: 4

Compression:

Stored size: 613 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'
task default: %i[coverage rubocop bundle:audit gem]

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
ruby-marc-spec-0.1.3 Rakefile
ruby-marc-spec-0.1.2 Rakefile
ruby-marc-spec-0.1.1 Rakefile
ruby-marc-spec-0.1.0 Rakefile