mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-16 14:15:04 -05:00
10 lines
206 B
Ruby
10 lines
206 B
Ruby
|
$:.unshift File.dirname(__FILE__) # For use/testing when no gem is installed
|
||
|
|
||
|
require "rubygems"
|
||
|
require 'octopress'
|
||
|
require 'rake/testtask'
|
||
|
|
||
|
Rake::TestTask.new do |t|
|
||
|
t.pattern = "spec/**/*_spec.rb"
|
||
|
end
|