Codebase list ruby-cms-scanner / fresh-snapshots/upstream Rakefile
fresh-snapshots/upstream

Tree @fresh-snapshots/upstream (Download .tar.gz)

Rakefile @fresh-snapshots/upstreamraw · history · blame

# frozen_string_literal: true

require 'bundler/gem_tasks'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'

RuboCop::RakeTask.new
RSpec::Core::RakeTask.new(:spec)

# Run rubocop & rspec before the build
task build: %i[rubocop spec]