Sha256: a540aefbe90f9f8bd7cae70b7f2a2ac9885fe441298091a06035ee2859a1b0a6

Contents?: true

Size: 436 Bytes

Versions: 8

Compression:

Stored size: 436 Bytes

Contents

module PoolParty
  module Installers
    class Ec2 < Installer
      
      def steps
        [
          :todo
        ]
      end
      
      def self.name
        "Ec2"
      end
      
      def self.description
        "Ec2 installer"
      end
      
      def todo
        colored_say <<-EOE
          <line>
          <red>Not implemented yet</red>
          <line>
        EOE
        exit 0
      end
      
    end
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
auser-poolparty-1.3.0 lib/poolparty/installers/ec2.rb
auser-poolparty-1.3.1 lib/poolparty/installers/ec2.rb
auser-poolparty-1.3.2 lib/poolparty/installers/ec2.rb
auser-poolparty-1.3.3 lib/poolparty/installers/ec2.rb
auser-poolparty-1.3.4 lib/poolparty/installers/ec2.rb
poolparty-1.3.4 lib/poolparty/installers/ec2.rb
poolparty-1.3.3 lib/poolparty/installers/ec2.rb
poolparty-1.3.1 lib/poolparty/installers/ec2.rb