module Gherkin::CLexer

Public Class Methods

[](i18n_underscored_iso_code) click to toggle source
# File lib/gherkin/c_lexer.rb, line 5
def self.[](i18n_underscored_iso_code)
  begin
    prefix = RbConfig::CONFIG['arch'] =~ /mswin|mingw/ ? "#{RbConfig::CONFIG['MAJOR']}.#{RbConfig::CONFIG['MINOR']}/" : ''
    lib = "#{prefix}gherkin_lexer_#{i18n_underscored_iso_code}"
    require lib
    const_get(i18n_underscored_iso_code.capitalize)
  rescue LoadError => e
    e.message << %Q{\nCouldn't load #{lib}\nThe $LOAD_PATH was:\n#{$LOAD_PATH.join("\n")}}
    raise e
  end
end