Displaying 4 results from an estimated 4 matches for "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)
Unicorn is a Rack HTTP server for Unix, fast clients and nothing else[1]
We now have support for "Transfer-Encoding: chunked" bodies in
requests. Not only that, Rack applications reading input bodies
get that data streamed off to the client socket on an as-needed
basis. This allows the application to do things like upload
progress notification and even tunneling of arbitrary stream
2009 Jul 01
0
unicorn 0.9.0 (experimental release)
Unicorn is a Rack HTTP server for Unix, fast clients and nothing else[1]
We now have support for "Transfer-Encoding: chunked" bodies in
requests. Not only that, Rack applications reading input bodies
get that data streamed off to the client socket on an as-needed
basis. This allows the application to do things like upload
progress notification and even tunneling of arbitrary stream
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/*...