Displaying 4 results from an estimated 4 matches for "publish_doc".
Did you mean:
publish_docs
2006 Oct 18
3
Nightly automatic documentation generation
Is there a way to have RubyForge run our ''rake html_docs'' on SVN Head
each night and if successful copy to http://wxruby.rubyforge.org/doc/?
I do not know all the features RubyForge provides to us but this one
would be pretty nice.
Sean
2009 Jul 01
0
unicorn 0.9.0 (experimental release)
...to reset the request
http_request: StringIO is binary for empty bodies (1.9)
http_request: fix typo for 1.9
Transfer-Encoding: chunked streaming input support
Unicorn::App::Inetd: reinventing Unix, poorly :)
README: update with mailing list info
local.mk.sample: publish_doc gzips all html, js, css
Put copyright text in new files, include GPL2 text
examples/cat-chunk-proxy: link to proposed curl(1) patch
Update TODO
Avoid duplicating the "Z" constant
Optimize body-less GET/HEAD requests (again)
tee_input: Don''t exp...
2009 Jul 01
0
unicorn 0.9.0 (experimental release)
...to reset the request
http_request: StringIO is binary for empty bodies (1.9)
http_request: fix typo for 1.9
Transfer-Encoding: chunked streaming input support
Unicorn::App::Inetd: reinventing Unix, poorly :)
README: update with mailing list info
local.mk.sample: publish_doc gzips all html, js, css
Put copyright text in new files, include GPL2 text
examples/cat-chunk-proxy: link to proposed curl(1) patch
Update TODO
Avoid duplicating the "Z" constant
Optimize body-less GET/HEAD requests (again)
tee_input: Don''t exp...
2006 Oct 22
0
[705] trunk/wxruby2/rake/rakedocs.rb: Add rake task to publish docs to wxruby website (Alex Fenton)
...ot;> task :doc_tar_gz => [ doc_tar_gz_package ]
</span><ins>+
+# set the rubyforge username for publishing to the website
+RUBYFORGE_USER = ENV[''RUBYFORGE_USER'']
+
+desc ''Publish rendered docs and sources to the wxRuby website, using scp''
+task :publish_docs => [ :html_docs ] do | t |
+ if not RUBYFORGE_USER
+ raise ''Must specify RUBYFORGE_USER to publish documents''
+ end
+ # the location we are publishing to
+ dest = "#{RUBYFORGE_USER}@rubyforge.org:/var/www/gforge-projects/wxruby/doc/"
+ sh "scp doc/html/...