File: Rakefile

package info (click to toggle)
ruby-jekyll-paginate-v2 3.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,988 kB
  • sloc: ruby: 1,085; sh: 7; makefile: 3
file content (16 lines) | stat: -rw-r--r-- 362 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'rake'
require 'rake/testtask'

#$LOAD_PATH.unshift(File.join(File.dirname(__FILE__), *%w[lib]))
#require 'lib/jekyll-paginate-v2/version'

Rake::TestTask.new do |t|
  t.libs.push 'lib'
  t.libs.push 'specs'
  t.verbose = true
  t.pattern = "spec/**/*_spec.rb"
  t.test_files = FileList['spec/**/*_spec.rb']
end

desc "Run tests"
task :default => [:test]