Sha256: 55de7f070c1ad4f01b108bcc771f94e84245da4851c87b4de8dc577d8e33748b
Contents?: true
Size: 1 KB
Versions: 2
Compression:
Stored size: 1 KB
Contents
require 'i18n' require 'cupcakinator/version' require 'cupcakinator/base' require 'cupcakinator/config' require 'cupcakinator/options' require 'cupcakinator/errors' # the purpose of cupcakinator is to provide an simple, flexible dynamic method to retrrieve configuration # data for a class # it provides this dynamic method as 'config' by default for both the class and any instances # @example class Foo uses cupcakinator, see Cupcakinator::Base::cupcakinate # given config.yml: # bacon: # flavor: pork # meatball: # flavor: # - pork # - chicken # >> Foo.config # {"meatball"=>{"flavor"=>["chicken", "pork"]}} # >> Foo.config.meatball # {"flavor"=>["chicken", "pork"]} module Cupcakinator unless @_i18n_initialized_for_cupcakinator locale_file = File.expand_path(File.join(File.dirname(__FILE__), '../config/locales.yml')) I18n.load_path << locale_file @_i18n_initialized_for_cupcakinator = true end def self.included(other) other.extend Cupcakinator::Base end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
cupcakinator-1.0.1 | lib/cupcakinator.rb |
cupcakinator-1.0.0 | lib/cupcakinator.rb |