Sha256: db8a786a79d5c0c7015c050a014d564698c1e37658f2cb4fd44759170665c5fd

Contents?: true

Size: 583 Bytes

Versions: 1

Compression:

Stored size: 583 Bytes

Contents

module Jack
  module EbConfig
    class Create < Base
      attr_reader :eb_config_path
      def initialize(options={})
        super
        @app_name = options[:app] || app_name_convention(@env_name)
      end

      def platform
        CreateYaml.new.data['Platform'] || latest_docker_platform
      end

      def app_name
        @app_name
      end

      def latest_docker_platform
        "64bit Amazon Linux 2015.03 v1.4.0 running Docker 1.6.0"
      end
   
      def solution_stacks
        eb.list_available_solution_stacks.solution_stacks
      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jack-eb-0.1.6 lib/jack/eb_config/create.rb