-
Notifications
You must be signed in to change notification settings - Fork 12
rails plugin to store countries as ISO codes
License
koke/iso_countries
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
= iso_countries - Store countries using ISO 3166 codes
This rails plugin enables you to store country info only with the country's ISO-3166 code
== Example
class Company < ActiveRecord::Base
iso_country :country
end
c = Company.new :country => "es"
c.country # => "es"
c.country_name # => "Spain"
c.country_name = "France"
c.country # => "fr"
ISO::Countries.set_language "es"
c.country_name # => "Francia"
<% form_for @company do |f| %>
<%= f.iso_country_select :country, [:es, :en] %>
<% end %>
== Acknowledgements
Translations are provided by the iso-codes package
http://pkg-isocodes.alioth.debian.org/
== License
Copyright (c) 2008 Jorge Bernal <[email protected]>, released under the MIT license
About
rails plugin to store countries as ISO codes
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published