Skip to content

Commit

Permalink
Rakefile: Add task for rspec and rubocop.
Browse files Browse the repository at this point in the history
  • Loading branch information
byohay committed Jun 16, 2021
1 parent eaf6297 commit ebeacb2
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# frozen_string_literal: true

# Copyright (c) 2020 Lightricks. All rights reserved.
# Created by Ben Yohay.

require "rspec/core/rake_task"
require "rubocop/rake_task"

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

RuboCop::RakeTask.new(:rubocop)

task default: %i[rubocop spec]

0 comments on commit ebeacb2

Please sign in to comment.