0.0
No commit activity in last 3 years
No release in over 3 years
A collection of geographis country and state names for Ruby. Also includes replacements for Rails' country_select and state_select plugins.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

Carmen- A simple collection of geographic names and abbreviations for Ruby¶ ↑

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.

Installation¶ ↑

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

Get a list of all countries¶ ↑

Carmen.countries => […, ['Germany', 'DE'], …, ['United States', 'US'], …]
Carmen.countries(:locale => 'de') => […, ['Deutschland', 'DE'], …, ['Vereinigte Staaten von Amerika', 'US'], …]

State list retrieval¶ ↑

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', ... ]

Abbreviation handling¶ ↑

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'

Default Country¶ ↑

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'

Default Localization¶ ↑

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

Changelog¶ ↑

  • 0.1.3 DEPRECATE Carmen::COUNTRIES in favor of Carmen.countries