oga/task/doc.rake

18 lines
494 B
Ruby
Raw Normal View History

2014-09-16 12:49:49 +00:00
namespace :doc do
desc 'Generates YARD documentation'
task :build => :generate do
sh 'yard'
end
2014-09-10 22:10:58 +00:00
2014-09-16 12:49:49 +00:00
desc 'Generates and uploads the documentation'
task :upload => :build do
2015-01-17 17:00:05 +00:00
version = GEMSPEC.version.to_s
bucket = 's3://code.yorickpeterse.com'
directory = GEMSPEC.name
2014-09-10 22:10:58 +00:00
2015-01-17 17:00:05 +00:00
sh "aws s3 rm --recursive #{bucket}/#{directory}/latest"
sh "aws s3 sync yardoc #{bucket}/#{directory}/#{version}"
sh "aws s3 sync yardoc #{bucket}/#{directory}/latest"
2014-09-16 12:49:49 +00:00
end
2014-09-10 22:10:58 +00:00
end