Class: YNDK
- Inherits:
-
TranslationTable
- Object
- TranslationTable
- YNDK
- Defined in:
- lib/ccls_engine/translation_table.rb
Class Method Summary collapse
-
.table ⇒ Object
unique translation table.
Methods inherited from TranslationTable
[], selector_options, valid_values
Class Method Details
.table ⇒ Object
unique translation table
42 43 44 45 46 47 48 |
# File 'lib/ccls_engine/translation_table.rb', line 42 def self.table @@table ||= [ { :value => 1, :short => 'yes', :long => "Yes" }, { :value => 2, :short => 'no', :long => "No" }, { :value => 999, :short => 'dk', :long => "Don't Know" } ] end |