forked from Dynamoid/dynamoid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
46 lines (40 loc) · 1.01 KB
/
Rakefile
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
require "bundler/gem_tasks"
require "bundler/setup"
begin
Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
$stderr.puts e.message
$stderr.puts "Run `bundle install` to install missing gems"
exit e.status_code
end
if defined?(Rails)
load "./lib/dynamoid/tasks/database.rake"
end
require "rake"
require "rspec/core/rake_task"
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.pattern = FileList["spec/**/*_spec.rb"]
end
require "yard"
YARD::Rake::YardocTask.new do |t|
t.files = ["lib/**/*.rb", "README", "LICENSE"] # optional
t.options = ["-m", "markdown"] # optional
end
desc "Publish documentation to gh-pages"
task :publish do
Rake::Task["yard"].invoke
`git add .`
`git commit -m 'Regenerated documentation'`
`git checkout gh-pages`
`git clean -fdx`
`git checkout master -- doc`
`cp -R doc/* .`
`git rm -rf doc/`
`git add .`
`git commit -m 'Regenerated documentation'`
`git pull`
`git push`
`git checkout master`
end
require "wwtd/tasks"
task :default => :spec