Sha256: 018939a036c2fee8b310cb949796f5c3feeb6a4e64688cc2a467382f4a57344b
Contents?: true
Size: 543 Bytes
Versions: 249
Compression:
Stored size: 543 Bytes
Contents
require 'rbconfig' module Gherkin module CLexer 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 << %{\nCouldn't load #{lib}\nThe $LOAD_PATH was:\n#{$LOAD_PATH.join("\n")}} raise e end end end end
Version data entries
249 entries across 244 versions & 9 rubygems