Sha256: bc2ea56c60fac2c2864c7c9dcf18097a18bf167e92cfa4a0a90dfd2d2c2ea005

Contents?: true

Size: 337 Bytes

Versions: 7

Compression:

Stored size: 337 Bytes

Contents

# frozen_string_literal: true

require 'bundler/setup'
require 'rake/testtask'

include Rake::DSL

Bundler::GemHelper.install_tasks

desc 'Default: run unit tests.'
task default: :test

desc 'Test the page_title_helper plugin.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
page_title_helper-9.1.0 Rakefile
page_title_helper-9.0.0 Rakefile
page_title_helper-8.0.0 Rakefile
page_title_helper-7.0.0 Rakefile
page_title_helper-6.0.0 Rakefile
page_title_helper-5.0.0 Rakefile
page_title_helper-4.0.0 Rakefile