Sha256: 163cb14fb689424fe2a4822ab661db17d187f9cda680e47aeacd380f8526e6b6
Contents?: true
Size: 569 Bytes
Versions: 1
Compression:
Stored size: 569 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 = ['--any', '--extra', '--opts'] # optional end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
code_zauker-0.0.1 | Rakefile |