I'm using simple_form, which automatically uses country_select plugin when using a field named country, like this:

<%= f.input :country %>

But I want to be able to restrict the countries displayed.

I saw country_select code defines this:

COUNTRIES = ["Afghanistan"
  ...
"Yemen", "Zambia", "Zimbabwe"] unless const_defined?("COUNTRIES")

So, I though I could override COUNTRIES like below:

<% COUNTRIES = ["Canada","USA"] %>
<p><%= f.input :country %></p>

But I get an error:

compile error
/home/jack/src/beta/app/views/contacts/_address_fields.html.erb:6: dynamic constant assignment
');  COUNTRIES = ["Canada","USA"] 
      ^

How to overwrite the COUNTRIES constant? Or is there a more elegant way of doing this?

Ps. I am using Ruby 1.8.7p330 with Rails 3.0.3

link|improve this question

I guess this is loaded at the beginning of the Rails app. Did you try to set COUNTRIES in an initializer? – apneadiving Mar 5 '11 at 22:31
Just fyi, I generally use github.com/jim/carmen – apneadiving Mar 5 '11 at 22:32
feedback

1 Answer

up vote 2 down vote accepted

The COUNTRIES constant is already defined by the plugin by the time your view is executed. Define your COUNTRIES in an intializer. (See: config/initializers)

Edit: Put this in an initializer, like config/initializers/countries.rb:

ActionView::Helpers::FormOptionsHelper::COUNTRIES = ["X", "Y", "Z"]
link|improve this answer
I did as suggested, but the entire list is still being shown! – Zabba Mar 5 '11 at 22:43
did you restart your server? – apneadiving Mar 5 '11 at 23:00
See my edit, and pay attention to apneadiving's reminder to restart your server. – jdl Mar 5 '11 at 23:06
The problem was that I was not setting the constant using the namespace. Thanks! – Zabba Mar 5 '11 at 23:08
You're welcome. Have fun. – jdl Mar 5 '11 at 23:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.