If I have a module that looks like this:

module Mymod
  require 'cgi'
  params=CGI.new
end

and I call a particular webpage like this:

http://www.mydomain.com/test1.html?test=value

and the particular web page has code in it that looks like this:

<% require mymod %>
<p><%= Mymod::params['test'] %></p>

why does this bomb instead of displaying the word 'test'?

If I move the contents of the module to the actual page, I can get it
to work just fine (of course, under that condition I omit the
'Mymod::').

How can I make this work?

Thanks for any input.

            ... doug







--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to