Sha256: 1d38e49e43193e233fc8d5af659bce71cb82c6017f5d5154613a5fe9246110b9

Contents?: true

Size: 282 Bytes

Versions: 10

Compression:

Stored size: 282 Bytes

Contents

require 'bundler/gem_tasks'

require 'rake'
require 'rake/testtask'

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

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

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
unread-0.1.2 Rakefile
unread-0.1.1 Rakefile
unread-0.1.0 Rakefile
unread-0.0.7 Rakefile
unread-0.0.6 Rakefile
unread-0.0.5 Rakefile
unread-0.0.4 Rakefile
unread-0.0.3 Rakefile
unread-0.0.2 Rakefile
unread-0.0.1 Rakefile