├── .gitignore ├── .shipit ├── Changes ├── MANIFEST ├── Makefile.PL ├── PSGI.pm ├── PSGI.pod ├── PSGI ├── Extensions.pod └── FAQ.pod └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.tar.gz 2 | *~ 3 | -------------------------------------------------------------------------------- /.shipit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plack/psgi-specs/HEAD/.shipit -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plack/psgi-specs/HEAD/Changes -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plack/psgi-specs/HEAD/MANIFEST -------------------------------------------------------------------------------- /Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plack/psgi-specs/HEAD/Makefile.PL -------------------------------------------------------------------------------- /PSGI.pm: -------------------------------------------------------------------------------- 1 | package PSGI; 2 | our $VERSION = "1.102"; 3 | 1; 4 | -------------------------------------------------------------------------------- /PSGI.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plack/psgi-specs/HEAD/PSGI.pod -------------------------------------------------------------------------------- /PSGI/Extensions.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plack/psgi-specs/HEAD/PSGI/Extensions.pod -------------------------------------------------------------------------------- /PSGI/FAQ.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plack/psgi-specs/HEAD/PSGI/FAQ.pod -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/plack/psgi-specs/HEAD/README.md --------------------------------------------------------------------------------