#!/usr/bin/env perl
# PODNAME: ddg_publisher
# ABSTRACT: Generating static parts of DuckDuckGo


use FindBin qw($Bin);
use lib "$Bin/../lib";
use lib "lib";

use DDG::App::Publisher;

DDG::App::Publisher->new_with_options->run;

__END__

=pod

=head1 NAME

ddg_publisher - Generating static parts of DuckDuckGo

=head1 VERSION

version 1042

=head1 SYNOPSIS

  perl -Ilib bin/ddg_publisher ~/test_publish

  # compressing html to one line without comments and unnecessary whitespaces
  perl -Ilib bin/ddg_publisher --no_compression ~/test_publish

=head1 AUTHOR

Torsten Raudssus <torsten@raudss.us>

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2012 by DuckDuckGo, Inc. L<http://duckduckgo.com/>.

This is free software, licensed under:

  The Apache License, Version 2.0, January 2004

=cut
