Sha256: d443b7f5b750e0da2c825bb31243ab811a7833e0a05a8922aa5673494a941e3c
Contents?: true
Size: 414 Bytes
Versions: 11
Compression:
Stored size: 414 Bytes
Contents
require 'ostruct' require 'albacore/support/openstruct' module Configuration module Docu include Albacore::Configuration def self.docuconfig @docuconfig ||= OpenStruct.new.extend(OpenStructToHash) end def docu config = Docu.docuconfig yield(config) if block_given? config end def self.included(obj) docuconfig.command = "Docu.exe" end end end
Version data entries
11 entries across 11 versions & 1 rubygems