search for: veenstra

Displaying 3 results from an estimated 3 matches for "veenstra".

Did you mean: henstra
2006 May 26
3
Packaging with mongrel
...al servers (which allows offline working) - with Webrick we were suffering from 500 (and other errors) that the switch to Mongrel has fixed. Since we are providing the local server as a download application we wanted to find a way to package up the code and ruby modules that were being used. Erik Veenstra packaging application (http://www.erikveen.dds.nl/distributingrubyapplications/rails.html) provides a mechanism to generate a minimal size download with everything needed to run the ruby application. We had to overcome a couple of issues to get the package working with Mongrel and thought it good t...
2006 Mar 03
1
starting webrick from ruby (tar2rubyscript.rb)
I am using tar2rubyscript to package up a rails application and run it as one file from the server. If you run script/server and have lighttpd install it will start lighty instead of webrick. So, thanks to Erik Veenstra''s suggestion, I add ARGV.unshift("webrick") to the init.rb file to force webrick to start: ARGV.unshift("webrick") load "script/server" How would I then specify the port for webrick to listen to? I tried adding another ARGV.unshift("--port=1234")...
2007 Feb 09
2
a series of tabbed forms
.../427170 in http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/217068 where I basically take a hash of hashes and create a set of tabbed dialogs for each key of the large hash where each tab has a form to set each key-value pair of the embedded hashes. Toward this end I looked at Erik Veenstra''s RubyWebDialogs, but he said that it is dead in favor of Rails. I want something less heavy that I can wrap my tiny brain around. Does anyone have a non-database-backed Camping app with tabs they could share as an example? (Or suggest an alternative approach entirely.) Thanks, -- Bil...