blob: b590727a905283e64b5e533650f9120569cfc6c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require 'formula'
# Require ec2-api-tools to get the base class
require "#{File.dirname __FILE__}/ec2-api-tools.rb"
class AutoScaling < AmazonWebServicesFormula
version '1.0.49.1'
homepage 'http://aws.amazon.com/developertools/2535'
url 'http://ec2-downloads.s3.amazonaws.com/AutoScaling-2011-01-01.zip'
md5 '9d94f533743c5e9c65dd76f69666e739'
def install
standard_install
end
def caveats
standard_instructions "AWS_AUTO_SCALING_HOME"
end
end
|