No commit activity in last 3 years
No release in over 3 years
Country list based on a csv file with long an short names for Dropdowns and selections
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.7
~> 10.0
 Project Readme

CsvCountrySelector

Provide helpers and selectors for an German country and language list based on a csv file.

Installation

Add this line to your application's Gemfile:

gem 'csv_country_selector'

And then execute:

$ bundle

Or install it yourself as:

$ gem install csv_country_selector

Usage

CsvCountrySelector::Country.short_name_for("Deutschland")  => "DE"
CsvCountrySelector::Country.long_name_for("de") => "Deutschland"
CsvCountrySelector::Country.long_list => ["Deutschland", "USA", ..]
CsvCountrySelector::Country.short_list => ["DE", "AT", ..]
CsvCountrySelector::Country.codes => { de: "Deutschland", at: "Österreich", ... }
CsvCountrySelector::Country.is_in_eu?("de") => true
CsvCountrySelector::Country.is_in_eu?("DE") => true
CsvCountrySelector::Country.is_in_eu?("US") => false

Development

Contributing

License

The gem is available as open source under the terms of the MIT License.