Skip to content

Commit

Permalink
fix(lambda): no inline code support for Ruby
Browse files Browse the repository at this point in the history
  • Loading branch information
Niranjan Jayakar committed Feb 19, 2020
1 parent b47eccc commit a4cb7a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/aws-lambda/lib/runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export class Runtime {
public static readonly DOTNET_CORE_2 = new Runtime('dotnetcore2.0', RuntimeFamily.DOTNET_CORE);
public static readonly DOTNET_CORE_2_1 = new Runtime('dotnetcore2.1', RuntimeFamily.DOTNET_CORE);
public static readonly GO_1_X = new Runtime('go1.x', RuntimeFamily.GO);
public static readonly RUBY_2_5 = new Runtime('ruby2.5', RuntimeFamily.RUBY, { supportsInlineCode: true });
public static readonly RUBY_2_5 = new Runtime('ruby2.5', RuntimeFamily.RUBY);
public static readonly PROVIDED = new Runtime('provided', RuntimeFamily.OTHER);

/**
Expand Down

0 comments on commit a4cb7a4

Please sign in to comment.