-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRakefile
More file actions
27 lines (22 loc) · 696 Bytes
/
Copy pathRakefile
File metadata and controls
27 lines (22 loc) · 696 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
require 'bundler'
Bundler::GemHelper.install_tasks
load File.expand_path(File.dirname(__FILE__) + '/tasks/fixtures.rake')
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)
task default: :spec
require 'gares/version'
require 'rdoc/task'
RDoc::Task.new(:rdoc) do |rdoc|
rdoc.main = 'README.rdoc'
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "Gares #{Gares::VERSION} documentation"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
rdoc.options << '--webcvs=http://github.com/paulrbr/gares/tree/master/'
end
require 'gokdok'
Gokdok::Dokker.new do |gd|
gd.repo_url = 'git@github.com:paulrbr/gares.git'
gd.doc_home = 'rdoc'
gd.remote_path = '.'
end