Sha256: 0e816eb3ddc83b1bbe61eba35b62bcc9e2c642a99a0f4407d335fbe21e3adf52

Contents?: true

Size: 564 Bytes

Versions: 15

Compression:

Stored size: 564 Bytes

Contents

#! /usr/bin/env rake
require 'bundler/gem_tasks'
require 'yard'
require 'rspec/core/rake_task'
require 'rubocop/rake_task'

task default: :build

# If there are test failures, you'll need to write code to address them.
# So no point in continuing to run the style tests.
desc 'Runs all spec tests'
RSpec::Core::RakeTask.new(:spec)

desc 'Runs yard'
YARD::Rake::YardocTask.new(:yard)

desc 'runs Rubocop'
RuboCop::RakeTask.new

desc 'Runs test and code cleanliness suite: RuboCop, rspec, and yard'
task run_guards: [:spec, :yard, :rubocop]

task build: :run_guards

Version data entries

15 entries across 11 versions & 2 rubygems

Version Path
loginator-0.1.2 Rakefile
projecter-0.1.4 files/Rakefile
projecter-0.1.4 Rakefile
loginator-0.1.1 Rakefile
loginator-0.0.7 Rakefile
loginator-0.0.6 Rakefile
loginator-0.0.4 Rakefile
projecter-0.1.3 files/Rakefile
projecter-0.1.3 Rakefile
projecter-0.1.2 files/Rakefile
projecter-0.1.2 Rakefile
loginator-0.0.3 Rakefile
loginator-0.0.2 Rakefile
projecter-0.1.1 Rakefile
projecter-0.1.1 files/Rakefile