require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec) do |t|
	t.pattern = 'tests/ruby/*_spec.rb'
end

task default: :spec
