File: Rakefile

package info (click to toggle)
tmuxinator 3.3.7-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 560 kB
  • sloc: ruby: 4,031; sh: 19; makefile: 14
file content (10 lines) | stat: -rw-r--r-- 199 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

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

RuboCop::RakeTask.new
RSpec::Core::RakeTask.new

task test: ["spec", "rubocop"]