ランキングに戻る

carmen-ruby/carmen

Ruby

A repository of geographic regions for Ruby

rubycountriesgeographic-dataiso3166
スター成長
スター
1.2k
フォーク
272
週間成長
Issue
11
5001k
2011年2月2016年3月2021年5月2026年7月
成果物RubyGemsgem install carmen
README

Carmen

A repository of geographic regions for Ruby

Build Status

Carmen features the following:

  • Clean API
  • Complete countries & regions data from the iso-codes Debian package
  • A sane approach to internationalization

How to Use Carmen

Carmen is designed to make it easy to access Country and region data. You can query for a country by name or code:

require 'carmen'
include Carmen

us = Country.named('United States')
=> <#Carmen::Country name="United States">

A Country object has some attributes that may be useful:

us.alpha_2_code
=> 'US'

us.alpha_3_code
=> 'USA'

us.numeric_code
=> '840'

us.code # alias for alpha_2_code
=> 'US'

us.official_name
=> "United States of America"

You can use separate finder methods for searching by each attribute (recommended):

gb = Country.alpha_2_coded('GB')
=> <#Carmen::Country name="United Kingdom">

ru = Country.alpha_3_coded('RUS')
=> <#Carmen::Country name="Russian Federation">

ad = Country.numeric_coded('020') # Note a string here! Alias: numerically_coded
=> <#Carmen::Country name="Andorra">

NOTICE: Please note, that in numeric_coded you should pass a 3-symbol zero padded string. Be aware of the fact, that Ruby interprets integers with leading zero as octal number (020 == 16 # => true).

You can query country by any code in single method (not recommended, and will be deprecated):

us = Country.coded('US')
=> <#Carmen::Country name="United States">

us = Country.coded('USA')
=> <#Carmen::Country name="United States">

us = Country.coded('840') # Note a string here
=> <#Carmen::Country name="United States">

A Country (and its subregions) can contain subregions. In the US these are states, but other countries have other types of regions:

us.subregions?
=> true

us.subregions.first
  => <#Carmen::Region name="Alabama" type="state">

Country#subregions returns a RegionCollection, which can be queried similarly to a Country to find, for instance, a specific state:

illinois = us.subregions.coded('IL')
=> <#Carmen::Region "Illinois">

You can also find all subregions with a specific type:

states = us.subregions.typed('state')
=> [<#Carmen::Region name="Alaska" type="state">, <#Carmen::Region name="Alabama" type="state">, ...]

Subregions support a smaller set of attributes than countries:

illinois.name
  => "Illinois"

illinois.code
=> "IL"

illinois.type
=> "state"

Some subregions may contain additional subregions. An example of this is Spain:

spain = Country.named('Spain')
andalucia = spain.subregions.first
=> <#Carmen::Region name="Andalucía" type="autonomous community">

andalucia.subregions?
=> true

andalucia.subregions.first
=> <#Carmen::Region name="Almería" type="province">

How Carmen organizes data

In order to facilitate support for I18n, Carmen stores the structure of regions separately from the strings that represent a region's names. The default data that ships with Carmen is in the iso_data and locale directories, respectively.

Overriding structural data

You might want to tweak the data that Carmen provides for a variety of reasons. Carmen maintains an array of paths to load data from in: Carmen.data_paths. The structure of files in each of these paths should mirror those in the iso_data path Carmen ships with.

To add a new country to the system, you would create a directory (let's use my_data as an example), and create a world.yml file inside it. Then add the path to Carman:

Carmen.append_data_path File.expand_path('../my_data', __FILE__)

Elements within the data files are identified using their code values (or, in the case of countries, alpha_2_code). Create a new block for the country you wish to add inside my_data/world.yml:

---
- alpha_2_code: ZZ
  alpha_3_code: ZZZ
  numeric_code: "999"
  type: country

Now, modify the fields you wish to change, and delete the others. Be sure to specify alpha_2_code for countries and code for subregions, as those values are used internally by Carmen to match your customized data with the corresponding data in the default dataset.

Now, Carmen will reflect your personal view of the world:

Carmen::Country.coded('ZZ').type
=> "country"

You will also want to create a localization file with the names for the new region. See the section 'Customizing an existing locale', below.

Modifying existing elements

Existing regions can be modified by copying their existing data block into a new file at the correct overlay path, and modifying the values as desired.

Disabling elements

It is also possible to remove an element from the dataset by setting its _enabled value to anything YAML considers false, such as 'false' or 'no':

- alpha_2_code: EU
  _enabled: false

This will cause Carmen to not return that element from any query:

Carmen::Country.coded('EU')
=> nil

Localization

Carmen ships with very simple I18n support. You can tell Carmen to use your own I18n backend:

Carmen.i18n_backend = YourI18nBackend.new

The object used as a backend must respond to t with a single argument (the key being looked up). This key will look something like world.us.il.name.

Setting the locale

If you use the built in I18n support, you can set the locale:

Carmen.i18n_backend.locale = :es

Each region is assigned a localization key based on the formula world.PARENT_CODE.CODE. The key used for the United States is world.us.

Customizing an existing locale

The library ships with a set of YAML files that contain localizations of many country names (and some states). If you want to override any of these values, create a YAML file that contains a nested hash structure, where each segment of the key is a hash:

en:
  world:
    us:
      official_name: These Crazy States

This file can live anywhere, but it is recommended that it be stored in a structure similar to the one Carmen uses for its locale storage.

To tell Carmen to load this file, add the directory it is contained in to the set of locale paths used by the backend:

Carmen.i18n_backend.append_locale_path('/path/to/your/locale/files')

If you are using your own backend, then follow the steps necessary to have it load your additional files instead.

Contributing to Carmen

Please read Contributing Data before making any changes to the project's data. It will save you (and me) a bunch of time!

Extensions

Jacob Morris has created a plugin for Carmen that adds support for demonyms.

Cyle Hunter has created a plugin that adds ISO 4217 currency names to Carmen::Country.

関連リポジトリ
DopplerHQ/awesome-interview-questions

:octocat: A curated awesome list of lists of interview questions. Feel free to contribute! :mortar_board:

awesome-listawesomeness
doppler.com
83.7k9.5k
rails/rails

Ruby on Rails

RubyRubyGemsMIT Licenserailsmvc
rubyonrails.org
58.6k22.4k
maybe-finance/maybe

The personal finance app for everyone

RubyRubyGemsGNU Affero General Public License v3.0financepersonal-finance
54.4k5.6k
jekyll/jekyll

:globe_with_meridians: Jekyll is a blog-aware static site generator in Ruby

RubyRubyGemsMIT Licenserubyjekyll
jekyllrb.com
51.6k10.3k
serhii-londar/open-source-mac-os-apps

🚀 Awesome list of open source applications for macOS. https://t.me/s/opensourcemacosapps

Creative Commons Zero v1.0 Universalmacosmac
49.7k2.6k
Homebrew/brew

🍺 The Package Manager for Everywhere

RubyRubyGemsBSD 2-Clause "Simplified" Licensehomebrewruby
brew.sh
48.9k11.2k
discourse/discourse

A platform for community discussion. Free, open, simple.

RubyRubyGemsGNU General Public License v2.0discoursejavascript
discourse.org
47.5k9k
fastlane/fastlane

🚀 The easiest way to automate building and releasing your iOS and Android apps

RubyRubyGemsMIT Licensefastlaneautomation
fastlane.tools
41.9k6k
chatwoot/chatwoot

Open-source live-chat, email support, omni-channel desk. An alternative to Intercom, Zendesk, Salesforce Service Cloud etc. 🔥💬

RubyRubyGemsOthervuejsintercom
chatwoot.com/help-center
34.6k8.3k
SeleniumHQ/selenium

A browser automation framework and ecosystem.

JavaMavenApache License 2.0seleniumwebdriver
selenium.dev
34.3k8.7k
hashicorp/vagrant

Vagrant is a tool for building and distributing development environments.

RubyRubyGemsOthervagrantruby
vagrantup.com
27.2k4.4k
asdf-vm/asdf

Extendable version manager with support for Ruby, Node.js, Elixir, Erlang & more

GoGo ModulesMIT Licenseversion-managerruby
asdf-vm.com
25.5k929