Sha256: b35f35d4fe097e91cead6736ff480a896ce178f0344a38e5e1c83f5a9f7726a4

Contents?: true

Size: 400 Bytes

Versions: 4

Compression:

Stored size: 400 Bytes

Contents

module Configuration
  module Syntax
    # Provides a shorthand for access config files
    #
    # For example:
    #
    #   # The following code
    #   Conf.foo
    #
    #   # is the same as:
    #   Configuration.foo
    #
    module Conf
      def self.method_missing(method, *args)
        Configuration.method_missing(method, args)
      end
    end
  end
end

include Configuration::Syntax

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
config_yml-0.0.7 lib/configuration/syntax/conf.rb
config_yml-0.0.6 lib/configuration/syntax/conf.rb
config_yml-0.0.5 lib/configuration/syntax/conf.rb
config_yml-0.0.4 lib/configuration/syntax/conf.rb