search for: html_doc

Displaying 4 results from an estimated 4 matches for "html_doc".

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
2007 Jul 26
3
Canonical way to generate RSpec HTML report in Rails app
Hi! I was just wondering how you typically generate a spec HTML report in a Rails app. Currently I''m doing something like this: spec spec -f h:spec/spec_report.html But that seems sort of clumsy and I would have thought that there was a rake task for it. Have I overlooked something? Thanks! Peter ---------------------------- Peter Marklund Garvar Lundins Gr?nd 7 11220 Stockholm
2006 Sep 18
2
docs
Unless anyone''s got any objections I''m going to check the class docs textile sources into SVN, for the ported classes at least. Think it makes more sense to open these up to editing and patching by human than trying to fix more edge cases in the latex translator. We can always alex
2006 Oct 22
0
[705] trunk/wxruby2/rake/rakedocs.rb: Add rake task to publish docs to wxruby website (Alex Fenton)
...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/*.html #{dest}&quot...