forked from nay/record_with_operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
26 lines (23 loc) · 678 Bytes
/
Rakefile
File metadata and controls
26 lines (23 loc) · 678 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require 'rubygems'
require 'rake'
require 'rake/clean'
require 'rake/testtask'
#require 'rdoc/task'
#require 'rake/gempackagetask'
desc 'Default: run unit tests.'
task :default => :test
desc 'Test the record_with_operator plugin.'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.libs << 'test'
t.pattern = 'test/**/*_test.rb'
t.verbose = true
end
#desc 'Generate documentation for the record_with_operator plugin.'
#Rake::RDocTask.new(:rdoc) do |rdoc|
# rdoc.rdoc_dir = 'rdoc'
# rdoc.title = 'RecordWithOperator'
# rdoc.options << '--line-numbers' << '--inline-source'
# rdoc.rdoc_files.include('README.rdoc')
# rdoc.rdoc_files.include('lib/**/*.rb')
#end