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