25 lines
704 B
Ruby
25 lines
704 B
Ruby
|
require "language/node"
|
||
|
|
||
|
class AwsCdk < Formula
|
||
|
desc "AWS Cloud Development Kit - framework for defining AWS infra as code"
|
||
|
homepage "https://github.com/aws/aws-cdk"
|
||
|
url "https://registry.npmjs.org/aws-cdk/-/aws-cdk-1.7.0.tgz"
|
||
|
|
||
|
depends_on "node"
|
||
|
|
||
|
def install
|
||
|
system "npm", "install", *Language::Node.std_npm_install_args(libexec)
|
||
|
bin.install_symlink Dir["#{libexec}/bin/*"]
|
||
|
end
|
||
|
|
||
|
test do
|
||
|
mkdir "testapp"
|
||
|
cd testpath/"testapp"
|
||
|
shell_output("#{bin}/cdk init app --language=javascript")
|
||
|
list = shell_output("#{bin}/cdk list")
|
||
|
cdkversion = shell_output("#{bin}/cdk --version")
|
||
|
assert_match "TestappStack", list
|
||
|
assert_match version.to_s, cdkversion
|
||
|
end
|
||
|
end
|