From 9986c89c2122f178148d690be336217f754d5633 Mon Sep 17 00:00:00 2001 From: Szymon Szukalski Date: Thu, 24 Oct 2024 11:18:53 +1100 Subject: Initialise project with RSpec and Rakefile --- Rakefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Rakefile (limited to 'Rakefile') diff --git a/Rakefile b/Rakefile new file mode 100644 index 0000000..fa8633d --- /dev/null +++ b/Rakefile @@ -0,0 +1,13 @@ +# frozen_string_literal: true + +require 'rake' +require 'rspec/core/rake_task' + +RSpec::Core::RakeTask.new(:spec) do |t| + t.pattern = 'spec/**/*_spec.rb' +end + +desc 'Run all tests' +task test: :spec + +task default: :test -- cgit v1.2.3