Sha256: 934e686a3b71f773c6eb1becb1d4124727d8ced86eb9a0399e249b2334a71544

Contents?: true

Size: 1.09 KB

Versions: 159

Compression:

Stored size: 1.09 KB

Contents

module VMC::Cli::Command
  class Manifest < Base
    include VMC::Cli::ManifestHelper

    def initialize(options)
      super

      # don't resolve any of the manifest template stuff
      if manifest_file
        @manifest = load_manifest_structure manifest_file
      else
        @manifest = {}
      end
    end

    def edit
      build_manifest
      save_manifest
    end

    def extend(which)
      parent = load_manifest_structure which
      @manifest = load_manifest_structure which

      build_manifest

      simplify(@manifest, parent)

      @manifest["inherit"] ||= []
      @manifest["inherit"] << which

      save_manifest(ask("Save where?"))
    end

    private

    def simplify(child, parent)
      return unless child.is_a?(Hash) and parent.is_a?(Hash)

      child.reject! do |k, v|
        if v == parent[k]
          puts "rejecting #{k}"
          true
        else
          simplify(v, parent[k])
          false
        end
      end
    end

    def build_manifest
      @application = ask("Configure for which application?", :default => ".")
      interact true
    end
  end
end

Version data entries

159 entries across 159 versions & 11 rubygems

Version Path
vmc-0.3.17 lib/cli/commands/manifest.rb
af-0.3.16.2 lib/cli/commands/manifest.rb
af-0.3.16.1 lib/cli/commands/manifest.rb
vmc-IronFoundry-0.3.16.IF.2 lib/cli/commands/manifest.rb
vmc-0.3.16.beta.6 lib/cli/commands/manifest.rb
vmc-IronFoundry-0.3.16.IF.1 lib/cli/commands/manifest.rb
vmc-tsuru-0.3.alpha lib/cli/commands/manifest.rb
vmc-tsuru-0.2.alpha lib/cli/commands/manifest.rb
vmc-tsuru-0.1.alpha lib/cli/commands/manifest.rb
vmc-stic-0.4.1 lib/cli/commands/manifest.rb
vmc-stic-0.4.0 lib/cli/commands/manifest.rb
vmc-stic-0.0.1 lib/cli/commands/manifest.rb
vmc-stic-0.3.16.beta.5.topaz1 lib/cli/commands/manifest.rb
vmc-0.3.16.beta.5 lib/cli/commands/manifest.rb
paasio-0.3.16.1 lib/cli/commands/manifest.rb
vmc-0.3.16.beta.3 lib/cli/commands/manifest.rb
paasio-0.3.16.beta.2 lib/cli/commands/manifest.rb
vmc-0.3.16.beta.2 lib/cli/commands/manifest.rb
vmc-0.3.16.beta.1 lib/cli/commands/manifest.rb