lib/figtree/ini_config.rb in figtree-0.0.1 vs lib/figtree/ini_config.rb in figtree-0.0.2
- old
+ new
@@ -1,10 +1,7 @@
require 'ostruct'
module Figtree
class IniConfig < OpenStruct
- def initialize(array = [])
- # TODO move the reduction to #load_config
- # TODO then this class can be a shell
- super(array.reduce({}, :merge))
- end
+ end
+ class Subgroup < OpenStruct
end
end