CSS-Simple

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

{
   "abstract" : "Interface through which to read/write/manipulate CSS files while respecting the cascade order",
   "author" : [
      "Kevin Kamel <kamelkev@mailermailer.com>"
   ],
   "dynamic_config" : 1,
   "generated_by" : "ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.140640",
   "license" : [
      "perl_5"
   ],
   "meta-spec" : {
      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",

META.yml  view on Meta::CPAN

---
abstract: 'Interface through which to read/write/manipulate CSS files while respecting the cascade order'
author:
  - 'Kevin Kamel <kamelkev@mailermailer.com>'
build_requires:
  ExtUtils::MakeMaker: '0'
configure_requires:
  ExtUtils::MakeMaker: '0'
dynamic_config: 1
generated_by: 'ExtUtils::MakeMaker version 6.98, CPAN::Meta::Converter version 2.140640'
license: perl
meta-spec:

Makefile.PL  view on Meta::CPAN

    PMLIBDIRS => [ 'lib' ],
    PREREQ_PM => {
	'Carp' => 0,
        'Tie::IxHash' => 0
    },
    'test' => {
	TESTS => join(' ', map { glob } qw( t/*.t t/*/*.t )),
    },
    VERSION_FROM => $module,
    AUTHOR => 'Kevin Kamel <kamelkev@mailermailer.com>',
    ABSTRACT => 'Interface through which to read/write/manipulate CSS files while respecting the cascade order',
    LICENSE => 'perl',
);

sub MY::postamble {
  package MY;

  my $postamble = "all :: README\n\nREADME: $module\n\tpod2text $module > README";

  return $postamble;
}

README  view on Meta::CPAN

NAME
    CSS::Simple - Interface through which to read/write/manipulate CSS files
    while respecting the cascade order

SYNOPSIS
     use CSS::Simple;

     my $css = new CSS::Simple();

     $css->read_file({ filename => 'input.css' });

     #perform manipulations...

lib/CSS/Simple.pm  view on Meta::CPAN

use Carp;

use Tie::IxHash;
use Storable qw(dclone);
use Ref::Util qw(is_plain_arrayref is_plain_hashref);

=pod

=head1 NAME

CSS::Simple - Interface through which to read/write/manipulate CSS files while respecting the cascade order

=head1 SYNOPSIS

 use CSS::Simple;

 my $css = new CSS::Simple();

 $css->read_file({ filename => 'input.css' });

 #perform manipulations...



( run in 0.777 second using v1.01-cache-2.11-cpan-49f99fa48dc )