Project

yaqut

0.0
No commit activity in last 3 years
No release in over 3 years
A lightweight database of language names and ISO codes.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.7
~> 10.0
 Project Readme

Yaqut

Look up language codes & names.

Installation

Add this line to your application's Gemfile:

gem 'yaqut'

And then execute:

$ bundle

Or install it yourself as:

$ gem install yaqut

Usage

Searching is case-insensitive, but otherwise requires an exact match.

require "yaqut"

[...]

# Search all fields
Yaqut.search("english")
# or, just the language's English name
Yaqut.search(english_name: "french")
# or, just the language's native name, in native script
Yaqut.search(native_name: "العربية")
# or, just the language's native name, in ASCII
Yaqut.search(transliterated_native_name: "francais")
# or, just the ISO 639-1 code
Yaqut.search(iso_639_1: "el")

All calls, if successful, return a Yaqut::Language instance from which you can ready any of the search fields (english_name, iso_639_1, etc.)

Contributing

  1. Fork it ( https://github.com/cpfair/yaqut/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request