Skip to content

Commit

Permalink
Merge pull request #1724 from CPAN-API/mi/es2-frozen
Browse files Browse the repository at this point in the history
Elasticsearch v0 to v2
  • Loading branch information
mickeyn committed Jun 14, 2016
2 parents 4b43e0b + d3fe4e6 commit da90a9d
Show file tree
Hide file tree
Showing 54 changed files with 2,889 additions and 3,783 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -3,17 +3,17 @@ perl:
- "5.22"
- "5.20"
- "5.18"
- "5.16"

matrix:
allow_failures:
- perl: "5.22"
- perl: "5.20"
- perl: "5.18"

env:
global:
# Carton --deployment only works on the same version of perl
# that the snapshot was built from.
- DEPLOYMENT_PERL_VERSION=5.18
- DEPLOYMENT_PERL_VERSION=5.22

before_install:
- npm install -g less js-beautify
Expand Down
1 change: 1 addition & 0 deletions app.psgi
Expand Up @@ -14,6 +14,7 @@ my $dev_mode;
BEGIN {
$root_dir = File::Basename::dirname(__FILE__);
$dev_mode = $ENV{PLACK_ENV} && $ENV{PLACK_ENV} eq 'development';
$dev_mode and require Carp::Always;
}

BEGIN {
Expand Down
9 changes: 6 additions & 3 deletions cpanfile
@@ -1,3 +1,4 @@
requires 'Carp::Always';
requires 'AnyEvent::Curl::Multi';
requires 'CHI';
requires 'CPAN::Changes', '0.21';
Expand Down Expand Up @@ -26,8 +27,7 @@ requires 'DateTime::Format::HTTP';
requires 'DateTime::Format::ISO8601';
requires 'Digest::MD5';
requires 'Digest::SHA1';
requires 'Search::Elasticsearch';
requires 'ElasticSearch::SearchBuilder';
requires 'Search::Elasticsearch', '2.00';
requires 'Encode', '2.51';
requires 'Exporter';
requires 'Format::Human::Bytes';
Expand All @@ -43,6 +43,7 @@ requires 'HTTP::Request';
requires 'HTTP::Request::Common';
requires 'Hash::AsObject';
requires 'Hash::Merge';
requires 'Importer';
requires 'JavaScript::Minifier::XS';
requires 'JSON::MaybeXS', '1.002000';
requires 'List::AllUtils';
Expand All @@ -57,6 +58,7 @@ requires 'MooseX::ClassAttribute';
requires 'MooseX::Role::Parameterized', '1.02';
requires 'MooseX::StrictConstructor';
requires 'PerlIO::gzip';
requires 'MetaCPAN::Moose';
requires 'MooseX::Types::Common::Numeric';
requires 'MooseX::Types::Common::String';
requires 'MooseX::Types::Moose';
Expand All @@ -72,6 +74,7 @@ requires 'Plack::Middleware::Session::Cookie';
requires 'Plack::Response';
requires 'Plack::Session';
requires 'Plack::Test';
requires 'Ref::Util', '>= 0.008';
requires 'Regexp::Common';
requires 'Regexp::Common::time';
requires 'Starman', '>= 0.4008';
Expand Down Expand Up @@ -101,4 +104,4 @@ test_requires 'Perl::Critic', '1.124';
test_requires 'Test::Perl::Critic';
test_requires 'Test::XPath', '0.15';

author_requires 'Code::TidyAll';
author_requires 'Code::TidyAll', '>= 0.47';

0 comments on commit da90a9d

Please sign in to comment.