lib/csd/container.rb in csd-0.1.13 vs lib/csd/container.rb in csd-0.1.14

- old
+ new

@@ -68,11 +68,11 @@ # A wrapper for the Options class to be able to run all methods as class methods. # class Options # Because the Options class will respond to clear, we must pass it on explicitly to the OptionsParser instance residing in CSD.options # - def self.clear - ::CSD.options.clear + def self.clear(*args) + ::CSD.options.clear(*args) end def self.method_missing(meth, *args, &block) ::CSD.options.send(meth, *args, &block) end end \ No newline at end of file