forked from ariejan/imdb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
27 lines (22 loc) · 721 Bytes
/
Rakefile
File metadata and controls
27 lines (22 loc) · 721 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 'imdb/version'
require 'rdoc/task'
RDoc::Task.new(:rdoc) do |rdoc|
rdoc.main = 'README.rdoc'
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "imdb #{Imdb::VERSION} documentation"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
rdoc.options << '--webcvs=http://github.com/ariejan/imdb/tree/master/'
end
require 'gokdok'
Gokdok::Dokker.new do |gd|
gd.repo_url = "git@github.com:ariejan/imdb.git"
gd.doc_home = "rdoc"
gd.remote_path = "."
end