Sha256: f12db1d1922b9915cd336417b12781526bd1a6ee0a9660c3e1cff80df523d206
Contents?: true
Size: 789 Bytes
Versions: 1
Compression:
Stored size: 789 Bytes
Contents
# -*- coding: utf-8 ; mode: ruby; -*- require "bundler/gem_tasks" # See http://jasonseifer.com/2010/04/06/rake-tutorial require 'rake/testtask' # See http://rake.rubyforge.org/classes/Rake/TestTask.html Rake::TestTask.new do |t| # List of directories to added to $LOAD_PATH before running the tests. (default is ‘lib’) #t.libs << 'test' t.test_files = FileList['test/test*.rb'] t.verbose = true end require 'yard' YARD::Rake::YardocTask.new do |t| t.files = ['lib/**/*.rb'] # optional t.options += ['--title', "Code Zauker #{CodeZauker::VERSION} Documentation"] #t.options = ['--any', '--extra', '--opts'] # optional end desc "Code Zauker default task for generating doucmentation, running tests and packing gem" task :default => [ :test, :yard, :build] do end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
code_zauker-0.0.2 | Rakefile |