-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrakefile
More file actions
28 lines (25 loc) · 704 Bytes
/
rakefile
File metadata and controls
28 lines (25 loc) · 704 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
27
28
begin
require 'rspec/core/rake_task'
desc 'run unit tests'
RSpec::Core::RakeTask.new(:spec)
task :default => :spec
desc 'run focused unit tests'
RSpec::Core::RakeTask.new(:focus) do |s|
s.rspec_opts = '--tag focus'
end
rescue LoadError
end
# begin
# # tasks included:
# # rdoc - create from new/changed files
# # rdoc:clean - clean rdoc path
# # rdoc:force - re-create all
# require 'rdoc/task'
# RDoc::Task.new(rdoc: 'rdoc', clobber_rdoc: 'rdoc:clean', rerdoc: 'rdoc:force' ) do |rdoc|
# rdoc.main = 'README'
# rdoc.title = 'Jamendo Radio'
# rdoc.rdoc_files.include('README.rdoc', 'lib/**/*.rb')
# rdoc.rdoc_dir = 'html'
# end
# rescue LoadError
# end