Sha256: 859671d806389288ac826f688cd1d467c32f8fbc9c925100a8189feb7fdc7542
Contents?: true
Size: 573 Bytes
Versions: 13
Compression:
Stored size: 573 Bytes
Contents
require 'i18n' require 'pathname' require "juli/version" # namespace for all of Juli library elements module Juli # sentinel to search juli-repo. Also it's a directory name to sotre config. REPO = '.juli' LIB = File.join(Pathname.new(File.dirname(__FILE__)).realpath, 'juli') TEMPLATE_PATH = File.join(LIB, 'template') class JuliError < StandardError; end class NoConfig < JuliError; end class NotImplemented < JuliError; end class << self def init I18n.enforce_available_locales = false end end end
Version data entries
13 entries across 13 versions & 1 rubygems