Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added CSS::LESSp to required modules to allow successful fallback #4

Merged
merged 8 commits into from
Nov 26, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ local/
.carton/
MYMETA.json

## Ignore backup files
*~

### /Users/naoya/.gitignore-boilerplates/perl.gitignore

blib/
Expand All @@ -17,6 +20,7 @@ Makefile
Makefile.old
MANIFEST.bak
META.yml
META.json
MYMETA.yml
nytprof.out
pm_to_blib
2 changes: 2 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ Revision history for Perl extension Plack::Middleware::File::Less

0.03
- Added abstract to pod
- Added CSS::LESSp to dependencies to ensure module is available
for fallback when the 'lessc' executable is not available

0.02 2013-01-23 10:44:28 Naoya Ito <i.naoya@gmail.com>
- forked
Expand Down
9 changes: 7 additions & 2 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
Changes
inc/Module/CPANfile.pm
inc/Module/CPANfile/Environment.pm
inc/Module/CPANfile/Prereq.pm
inc/Module/CPANfile/Prereqs.pm
inc/Module/CPANfile/Requirement.pm
inc/Module/Install.pm
inc/Module/Install/Base.pm
inc/Module/Install/Can.pm
inc/Module/Install/CPANfile.pm
inc/Module/Install/Fetch.pm
inc/Module/Install/Include.pm
inc/Module/Install/Makefile.pm
Expand All @@ -10,11 +16,10 @@ inc/Module/Install/ReadmeFromPod.pm
inc/Module/Install/Repository.pm
inc/Module/Install/Win32.pm
inc/Module/Install/WriteAll.pm
inc/Test/Builder/Module.pm
inc/Test/Requires.pm
lib/Plack/Middleware/File/Less.pm
Makefile.PL
MANIFEST This list of files
META.json
META.yml
README
t/bar.css
Expand Down
3 changes: 3 additions & 0 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.travis.yml
carton.lock
cpanfile
13 changes: 13 additions & 0 deletions cpanfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
## runtime requirements
requires 'Plack';
requires 'CSS::LESSp';

## test_requires
on 'test' => sub {
requires 'Test::More';
requires 'Test::Requires';
requires 'Devel::Cover';
requires 'CSS::LESSp';
};

## author_requires
on 'develop' => sub {
requires 'inc::Install::Module';
requires 'Module::Install::Repository';
requires 'Install::Module::ReadmeFromPod';
requires 'Module::Install::CPANfile';
requires 'Module::Install::Can';
requires 'CSS::LESSp';
};
2 changes: 1 addition & 1 deletion lib/Plack/Middleware/File/Less.pm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package Plack::Middleware::File::Less;
use strict;
use warnings;
use 5.008_001;
our $VERSION = '0.02';
our $VERSION = '0.03';

use parent qw(Plack::Middleware);
use Plack::Util;
Expand Down