libplack-middleware-file-sass-perl 0.03-6 source package in Ubuntu

Changelog

libplack-middleware-file-sass-perl (0.03-6) unstable; urgency=medium

  * Team upload.
  * Remove Makefile.old via debian/clean. (Closes: #1046949)

 -- gregor herrmann <email address hidden>  Thu, 07 Mar 2024 16:43:33 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe perl

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libplack-middleware-file-sass-perl_0.03-6.dsc 2.6 KiB eaaf0ac4c2870867f741454afb5d5c64a0e7fabece278eda378eb5c3d1e9fdba
libplack-middleware-file-sass-perl_0.03.orig.tar.gz 22.3 KiB aac4107b230799d02f2e6094915487ee257b18c1d57882f7c8fe61add7b2cdb6
libplack-middleware-file-sass-perl_0.03-6.debian.tar.xz 4.9 KiB f9f36cad7bd2cc73180fd6b2c6b26e0522a20101504251f63299ef93acfdca01

Available diffs

No changes file available.

Binary packages built by this source

libplack-middleware-file-sass-perl: Sass and SCSS support for all Plack-based PSGI frameworks

 PSGI is a specification to decouple web server environments from web
 application framework code. Plack is an implementation of PSGI.
 .
 Plack::Middleware::File::Sass is a Plack middleware component that
 works with Plack::App::File or Plack::Middleware::Static to compile
 Sass templates into CSS stylesheet in every request.
 .
 When a request comes in for *.css* file, this middleware changes the
 internal path to *.sass* or *.scss*, depending on the configuration, in
 the same directory. If the Sass template is found, a new CSS stylesheet
 is built on memory and served to the browsers. Otherwise, it falls back
 to the original *.css* file in the directory.
 .
 This middleware should be very handy for the development. While Sass to
 CSS rendering is reasonably fast, for the production environment you
 might want to precompile Sass templates to CSS files on disk and serves
 them with a real web server like nginx or lighttpd.
 .
 Text::Sass provides only a limited Sass implementation, so the Ruby
 implementation is recommended even when Text::Sass is available.