mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
removing source code docs now that we have real docs
This commit is contained in:
parent
10af5caad9
commit
727be0fd59
2 changed files with 1 additions and 41 deletions
39
Rakefile
39
Rakefile
|
@ -13,42 +13,3 @@ require 'rake/testtask'
|
|||
require 'rake/clean'
|
||||
|
||||
task :test => ["cucumber"]
|
||||
|
||||
# rocco depends on rdiscount, which makes me sad.
|
||||
unless defined?(JRUBY_VERSION)
|
||||
# Bring in Rocco tasks
|
||||
require 'rocco/tasks'
|
||||
Rocco::make 'docs/'
|
||||
|
||||
desc 'Build rocco docs'
|
||||
task :docs => :rocco
|
||||
directory 'docs/'
|
||||
|
||||
# Make index.html a copy of rocco.html
|
||||
file 'docs/index.html' => 'docs/middleman.html' do |f|
|
||||
cp 'docs/middleman.html', 'docs/index.html', :preserve => true
|
||||
end
|
||||
task :docs => 'docs/index.html'
|
||||
CLEAN.include 'docs/index.html'
|
||||
|
||||
desc 'Update gh-pages branch'
|
||||
task :pages => ['docs/.git', :docs] do
|
||||
rev = `git rev-parse --short HEAD`.strip
|
||||
Dir.chdir 'docs' do
|
||||
sh "git add *.html"
|
||||
sh "git commit -m 'rebuild pages from #{rev}'" do |ok,res|
|
||||
if ok
|
||||
verbose { puts "gh-pages updated" }
|
||||
sh "git push -q o HEAD:gh-pages"
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
# Update the pages/ directory clone
|
||||
file 'docs/.git' => ['docs/', '.git/refs/heads/gh-pages'] do |f|
|
||||
sh "cd docs && git init -q && git remote add o ../.git" if !File.exist?(f.name)
|
||||
sh "cd docs && git fetch -q o && git reset -q --hard o/gh-pages && touch ."
|
||||
end
|
||||
CLOBBER.include 'docs/.git'
|
||||
end
|
||||
|
|
|
@ -41,6 +41,5 @@ Gem::Specification.new do |s|
|
|||
s.add_development_dependency("cucumber", ["~> 0.10.0"])
|
||||
s.add_development_dependency("rake", ["0.8.7"])
|
||||
s.add_development_dependency("rspec", ["~> 2.6.0"])
|
||||
s.add_development_dependency("rocco", ["~> 0.8.1"]) unless defined?(JRUBY_VERSION)
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue