Skip to content

Commit

Permalink
use Yanick's dzil setup
Browse files Browse the repository at this point in the history
  • Loading branch information
yanick committed Sep 7, 2018
1 parent 4010127 commit 3fe8035
Show file tree
Hide file tree
Showing 5 changed files with 87 additions and 7 deletions.
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
before_install:
- export HARNESS_OPTIONS=j10:c HARNESS_TIMER=1
- rm .travis.yml
- git config --global user.name "Dist Zilla Plugin TravisCI"
- git config --global user.email $HOSTNAME":[email protected]"
install:
- cpanm --installdeps -n .
language: perl
perl:
- '5.14'
- '5.16'
- '5.18'
- '5.20'
- '5.22'
- '5.24'
- '5.26'
script:
- prove -l t
23 changes: 23 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
CODE_OF_CONDUCT.md
CONTRIBUTING
CONTRIBUTORS
Changes
INSTALL
LICENSE
MANIFEST
META.json
META.yml
Makefile.PL
README.mkdn
README.pod
cpanfile
dist.ini
doap.xml
lib/Dancer2/Session/Memcached.pm
perlcritic.rc
t/00-compile.t
t/00-report-prereqs.dd
t/00-report-prereqs.t
t/basic.t
t/config.t
xt/release/unused-vars.t
39 changes: 39 additions & 0 deletions cpanfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
requires "Cache::Memcached" => "0";
requires "Carp" => "0";
requires "Dancer2" => "0.15000";
requires "Dancer2::Core::Role::SessionFactory" => "0";
requires "Moo" => "0";
requires "Type::Tiny" => "0";
requires "Types::Standard" => "0";
requires "strict" => "0";
requires "warnings" => "0";

on 'test' => sub {
requires "Dancer2" => "0.15000";
requires "ExtUtils::MakeMaker" => "0";
requires "File::Spec" => "0";
requires "File::Temp" => "0.22";
requires "HTTP::Cookies" => "0";
requires "HTTP::Date" => "0";
requires "HTTP::Request::Common" => "0";
requires "IO::Handle" => "0";
requires "IPC::Open3" => "0";
requires "JSON" => "0";
requires "Plack::Test" => "0";
requires "Test::Exception" => "0";
requires "Test::More" => "0";
requires "perl" => "5.006";
};

on 'test' => sub {
recommends "CPAN::Meta" => "2.120900";
};

on 'configure' => sub {
requires "ExtUtils::MakeMaker" => "0";
};

on 'develop' => sub {
requires "Test::More" => "0.96";
requires "Test::Vars" => "0";
};
11 changes: 6 additions & 5 deletions dist.ini
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
name = Dancer2-Session-Memcached
author = David Golden <[email protected]>
author = Yanick Champoux <[email protected]>
license = Apache_2_0
copyright_holder = David Golden
copyright_year = 2013

[@DAGOLDEN]
:version = 0.035
AutoMetaResources.bugtracker.rt = 0
AutoMetaResources.bugtracker.github = user:dagolden
stopwords = memcached
[@Filter]
-bundle=@YANICK
-remove=Signature
-remove=Covenant
NextVersion::Semantic.format = %d.%03d

[Prereqs]
Dancer2 = 0.15000
2 changes: 0 additions & 2 deletions lib/Dancer2/Session/Memcached.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ use warnings;

package Dancer2::Session::Memcached;
# ABSTRACT: Dancer 2 session storage with Cache::Memcached
# VERSION
our $VERSION = '0.004';

use Moo;
use Cache::Memcached;
Expand Down

0 comments on commit 3fe8035

Please sign in to comment.