Skip to content

Commit ffa85b2

Browse files
committed
Support Ruby 3.2
1 parent 4b2a1b2 commit ffa85b2

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

example/lib/example-stack.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,11 @@ export class ExampleStack extends cdk.Stack {
1717
sourceDirectory: path.join(__dirname, '../app'),
1818
handler: 'main.handler',
1919
});
20+
21+
new lambdaRuby.RubyFunction(this, 'RubyFunction3_2', {
22+
runtime: lambda.Runtime.RUBY_3_2,
23+
sourceDirectory: path.join(__dirname, '../app'),
24+
handler: 'main.handler',
25+
});
2026
}
2127
}

0 commit comments

Comments
 (0)