Re: Equivalent of Java static code block in Ruby?

If you’re using fastcgi/webrick/mongrel (not plain cgi) and your
RAILS_ENV is set to “production” (which, by default will set the class
loading mechanism to ‘require’ rather than ‘load’), you should get the
code only executed once (at least that’s my understanding).

In general, if you’re asking questions about how to do something in a
rails environment, mention that, as much of the behaviour seen in rails
is quite different from that in a standard ruby application (which is
what you’ll find most of the answers in relation to).