mirror of
https://github.com/tmuxinator/tmuxinator.git
synced 2026-07-21 12:50:43 -05:00
11 lines
273 B
Ruby
11 lines
273 B
Ruby
require "bundler/gem_tasks"
|
|
require "rubocop/rake_task"
|
|
require "rspec/core/rake_task"
|
|
|
|
RuboCop::RakeTask.new
|
|
RSpec::Core::RakeTask.new
|
|
RSpec::Core::RakeTask.new(:integration) do |t|
|
|
t.rspec_opts = "--tag integration"
|
|
end
|
|
task :test => ["spec", "rubocop", "integration"]
|