Damien Giese
Damien Giese
The text above (an below, for that matter) "Usage:" will be printed if the `--help` option is specified. Based on what you've described, I assume that you are running your...
Absolutely! I am (very slowly) working through the process now.
@cosmin, thanks very much for your help. I've spent quite a lot of time learning about git and PGP in preparation to publish docopt to Maven Central, but I admit...
I've created a native Java implementation of docopt. It's available on [GitHub](https://github.com/docopt/docopt.java). ~~It hasn't been accepted into the the docopt organization yet, but~~ I've used it on some of my...
Here's another template that exhibits this issue. ```yaml AWSTemplateFormatVersion: '2010-09-09' Transform: AWS::Serverless-2016-10-31 Parameters: StageName: Type: String Default: dev Resources: MyApi: Type: AWS::Serverless::Api Properties: StageName: !Sub ${StageName} Auth: DefaultAuthorizer: MyLambdaAuthorizer Authorizers:...