This library will work as a drop in replacement for the official Rails country_select and its various forks. The idea is to provide a single library for all geographic naming concerns, and unify them under a consistent API.
States are supported for the following countries: Australia, Brazil, Canada, Cuba, Denmark, Germany, Italy, Mexico, Spain, Ukraine, and United States.
gem install namxam-carmen
If you’re in Rails:
# classic style config.gem 'namxam-carmen', :lib => 'carmen', :source => 'http://rubygems.org' # when using rubygems 1.3.6 config.gem 'namxam-carmen', :lib => 'carmen' # when on rails 3 put this in your Gemfile gem "namxam-carmen", :require => "carmen"
Or as a plugin:
script/plugin install git://github.com/namxam/carmen
Carmen.countries => […, ['Germany', 'DE'], …, ['United States', 'US'], …] Carmen.countries(:locale => 'de') => […, ['Deutschland', 'DE'], …, ['Vereinigte Staaten von Amerika', 'US'], …]
Carmen::states('US') => [['Alabama', 'AL'], ['Arkansas', 'AR'], ... ] Carmen::states => [['Alabama', 'AL'], ['Arkansas', 'AR'], ... ] # uses default country Carmen::state_names('US') => ['Alabama', 'Arkansas', ... ] Carmen::state_codes('US') => ['AL', 'AR', ... ]
Carmen::country_name('US') => 'United States' Carmen::country_code('Canada') => 'CA' Carmen::state_code('Illinois') => 'IL' Carmen::state_code('Manitoba', 'CA') => 'MB' Carmen::state_name('AZ') => 'Arizona'
Methods that take a country code argument will use the default country if none is provided. The default default country is ‘US’. You can change it to any country code:
Carmen.default_country = 'CA'
You can switch between different localizations of the countries list, by setting the locale value (default is :en):
Carmen.locale = :de
Currently included localizations are: English, German
-
0.1.3 DEPRECATE Carmen::COUNTRIES in favor of Carmen.countries