Sha256: f9468b2b864554987b433058ba925fa5532e0153da04c0bfae8fbbc459594967

Contents?: true

Size: 481 Bytes

Versions: 3

Compression:

Stored size: 481 Bytes

Contents

# frozen_string_literal: true

begin
  require 'bundler/gem_tasks'
rescue LoadError # rubocop:disable Lint/HandleExceptions
end

begin
  require 'rspec/core/rake_task'
  RSpec::Core::RakeTask.new(:spec)
  task(:default).prerequisites << task(:spec)
rescue LoadError # rubocop:disable Lint/HandleExceptions
end

begin
  require 'rubocop/rake_task'
  RuboCop::RakeTask.new
  task(:default).prerequisites << task(:rubocop)
rescue LoadError # rubocop:disable Lint/HandleExceptions
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mbs-0.0.3 Rakefile
mbs-0.0.2 Rakefile
mbs-0.0.1 Rakefile