Sha256: 4d8a582cfc35dfc5ef48f928e97c3067be9532fa26b8f4b11d1066bece864a42
Contents?: true
Size: 599 Bytes
Versions: 32
Compression:
Stored size: 599 Bytes
Contents
require 'json' require 'i18n' require 'yaml' require 'pathname' module Veewee # The source root is the path to the root directory of # the Veewee gem. def self.source_root @source_root ||= Pathname.new(File.expand_path('../../', __FILE__)) end end # # Default I18n to load the en locale I18n.load_path << File.expand_path("lib/veewee/templates/locales/en.yml", Veewee.source_root) # Load the things which must be loaded before anything else require 'veewee/error' require 'veewee/cli' require 'veewee/ui' require 'veewee/command' require 'veewee/environment' require 'veewee/version'
Version data entries
32 entries across 32 versions & 2 rubygems