Sha256: 6b58b8b2e1532fab4cf1e03e14b2dd183ac4322d47bb4b95926756ace1e4cf90
Contents?: true
Size: 542 Bytes
Versions: 1
Compression:
Stored size: 542 Bytes
Contents
# frozen_string_literal: true require "vimo/engine" require "vimo/configuration" require "vimo/ownerable" require "vimo/expandable" module Vimo # Your code goes here... class ConfigurationError < StandardError; end # Set global configuration options for I18nDashboard # @see README.md def self.configure(&block) block.call(configuration) end # Returns I18nDashboard's globalconfiguration. Will initialize a new instance # if not already set def self.configuration @configuration ||= Configuration.new end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vimo-0.1.3 | lib/vimo.rb |