===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
libweb-machine-perl-0.17/examples/yapc-talk-examples/033-postback-w-hateoas.psgi-10-    eval {
libweb-machine-perl-0.17/examples/yapc-talk-examples/033-postback-w-hateoas.psgi:11:        require( "$FindBin::Bin/030-postback.psgi" ) &&
libweb-machine-perl-0.17/examples/yapc-talk-examples/033-postback-w-hateoas.psgi:12:        require( "$FindBin::Bin/031-postback-w-json.psgi" ) &&
libweb-machine-perl-0.17/examples/yapc-talk-examples/033-postback-w-hateoas.psgi:13:        require( "$FindBin::Bin/032-postback-w-auth.psgi" )
libweb-machine-perl-0.17/examples/yapc-talk-examples/033-postback-w-hateoas.psgi-14-    }
##############################################
libweb-machine-perl-0.17/examples/yapc-talk-examples/031-postback-w-json.psgi-8-
libweb-machine-perl-0.17/examples/yapc-talk-examples/031-postback-w-json.psgi:9:BEGIN { eval { require( "$FindBin::Bin/030-postback.psgi" ) } }
libweb-machine-perl-0.17/examples/yapc-talk-examples/031-postback-w-json.psgi-10-
##############################################
libweb-machine-perl-0.17/examples/yapc-talk-examples/032-postback-w-auth.psgi-10-    eval {
libweb-machine-perl-0.17/examples/yapc-talk-examples/032-postback-w-auth.psgi:11:        require( "$FindBin::Bin/030-postback.psgi" ) &&
libweb-machine-perl-0.17/examples/yapc-talk-examples/032-postback-w-auth.psgi:12:        require( "$FindBin::Bin/031-postback-w-json.psgi" )
libweb-machine-perl-0.17/examples/yapc-talk-examples/032-postback-w-auth.psgi-13-    }
##############################################
libweb-machine-perl-0.17/README.md-73-
libweb-machine-perl-0.17/README.md:74:- `new( resource => $resource_classname, ?resource_args => $arg_list, ?tracing => 1|0, ?streaming => 1|0, ?request_class => $request_class )`
libweb-machine-perl-0.17/README.md-75-
libweb-machine-perl-0.17/README.md:76:    The constructor expects to get a `$resource_classname`, which it will use to
libweb-machine-perl-0.17/README.md-77-    load and create an instance of the resource class. If that class requires any
##############################################
libweb-machine-perl-0.17/README.md-92-
libweb-machine-perl-0.17/README.md:93:- `inflate_request( $env )`
libweb-machine-perl-0.17/README.md-94-
libweb-machine-perl-0.17/README.md:95:    This takes a raw PSGI `$env` and inflates it into a [Plack::Request](https://metacpan.org/pod/Plack::Request) instance.
libweb-machine-perl-0.17/README.md-96-    By default this also uses [HTTP::Headers::ActionPack](https://metacpan.org/pod/HTTP::Headers::ActionPack) to inflate the headers
##############################################
libweb-machine-perl-0.17/README.md-103-
libweb-machine-perl-0.17/README.md:104:- `create_resource( $request )`
libweb-machine-perl-0.17/README.md-105-
libweb-machine-perl-0.17/README.md-106-    This will create the [Web::Machine::Resource](https://metacpan.org/pod/Web::Machine::Resource) instance using the class specified
libweb-machine-perl-0.17/README.md:107:    in the `resource` constructor parameter. It will pass in the `$request` object
libweb-machine-perl-0.17/README.md:108:    and call `new_response` on the `$request` object to get a [Plack::Response](https://metacpan.org/pod/Plack::Response)
libweb-machine-perl-0.17/README.md-109-    instance.
libweb-machine-perl-0.17/README.md-110-
libweb-machine-perl-0.17/README.md:111:- `finalize_response( $response )`
libweb-machine-perl-0.17/README.md-112-
libweb-machine-perl-0.17/README.md:113:    Given a `$response` which is a [Plack::Response](https://metacpan.org/pod/Plack::Response) object, this will finalize
libweb-machine-perl-0.17/README.md-114-    it and return a raw PSGI response.
libweb-machine-perl-0.17/README.md-115-
libweb-machine-perl-0.17/README.md:116:- `call( $env )`
libweb-machine-perl-0.17/README.md-117-