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
- Fork it ( https://github.com/cpfair/yaqut/fork )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request