Sha256: 190b5b57de12e3168417a9a2d3449555d56b84f395eddb21782fa0388af5f46d

Contents?: true

Size: 1.69 KB

Versions: 1

Compression:

Stored size: 1.69 KB

Contents

module PoolParty    
  module Resources
    
    # Wrap all the resources into a class package from 
    def classpackage_with_self(parent=self, &block)
      @cp = PoolParty::Resources::Classpackage.new(parent.options, parent, &block)
      @cp.instance_eval {@resources = parent.resources}
      parent.instance_eval {@resources = nil}
      @cp
    end
                
    class Classpackage < Resource
            
      default_options({
        :name => nil
      })
      
      def initialize(opts={}, parent=self, &block)
        # Take the options of the parents        
        set_vars_from_options(opts) unless opts.empty?
        self.instance_eval &block if block
        set_parent(parent) if parent
        
        loaded
      end
                        
      def to_string
        returning String.new do |output|
          output << "# #{@parent.name.sanitize}"
          output << "\nclass #{@parent.name.sanitize} {\n"
          output << resources_string_from_resources(resources)
          output << "\n}\n"
        end
      end
      
      def include_string
        "include #{@parent.name.sanitize}"
      end

    end
    
    def resources_string_from_resources(resources, prev="\t")
      @variables = resources.extract! {|name,resource| name == :variable}
      returning Array.new do |str|
        unless @variables.empty?
          str << "\n# Variables \n"
          @variables.each do |name, variable|
            str << variable.to_string("#{prev}")
          end          
        end
        
        resources.each do |type, resource|
          str << "\n#{prev*2}# #{type}\n"
          str << resource.to_string("#{prev*2}")
        end        
      end.join("\n")
    end
    
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
auser-poolparty-0.2.2 lib/poolparty/pool/resources/class_package.rb