Sha256: dfd2b9128f6bc107e8292af88556c21dce361666b2b087a7667c2615f7588ca8
Contents?: true
Size: 537 Bytes
Versions: 219
Compression:
Stored size: 537 Bytes
Contents
require 'rbconfig' module Gherkin module CLexer def self.[](i18n_underscored_iso_code) begin prefix = Config::CONFIG['arch'] =~ /mswin|mingw/ ? "#{Config::CONFIG['MAJOR']}.#{Config::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
219 entries across 219 versions & 4 rubygems