]> iEval git - io-compress-brotli.git/blobdiff - lib/IO/Uncompress/Brotli.pm
Add all contributors to the POD
[io-compress-brotli.git] / lib / IO / Uncompress / Brotli.pm
index 7cf3bd65bece4e6d5ff61ca5e01963acf4f85f1e..3b111f8c2b05cc26be4895d26a2c992413f0c114 100644 (file)
@@ -8,33 +8,11 @@ use parent qw/Exporter/;
 our @EXPORT = qw/unbro/;
 our @EXPORT_OK = @EXPORT;
 
-our $VERSION = '0.001';
+our $VERSION = '0.001001';
 
 require XSLoader;
 XSLoader::load('IO::Compress::Brotli', $VERSION);
 
-sub create {
-       my ($class) = @_;
-       my $state = BrotliCreateState();
-       bless \$state, $class
-}
-
-sub DESTROY {
-       my ($self) = @_;
-       BrotliDestroyState($$self)
-}
-
-sub decompress {
-       my ($self, $data) = @_;
-       BrotliDecompressStream($$self, $data)
-}
-
-# Untested, probably not working
-sub set_dictionary {
-       my ($self, $dict) = @_;
-       BrotliSetCustomDictionary($$self, $dict)
-}
-
 1;
 __END__
 
@@ -115,6 +93,19 @@ Brotli source code: L<https://github.com/google/brotli/>
 
 Marius Gavrilescu, E<lt>marius@ieval.roE<gt>
 
+The encoder bindings, modernisation of the decoder bindings and a
+clean up of the overall project were contributed by:
+
+=over
+
+=item Quim Rovira, E<lt>quim@rovira.catE<gt>
+
+=item Ævar Arnfjörð Bjarmason, E<lt>avarab@gmail.comE<gt>
+
+=item Marcell Szathmári
+
+=item Mattia Barbon, E<lt>mattia@barbon.orgE<gt>
+
 =head1 COPYRIGHT AND LICENSE
 
 Copyright (C) 2015 by Marius Gavrilescu
This page took 0.023197 seconds and 4 git commands to generate.