ClickHouse

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

      },
      "develop" : {
         "requires" : {
            "App::ModuleBuildTiny" : "0.043"
         }
      },
      "runtime" : {
         "requires" : {
            "Net::HTTP" : "6.09",
            "Test::More" : "1.3",
            "Try::Tiny" : "0.24"
         }
      }
   },
   "provides" : {
      "ClickHouse" : {
         "file" : "lib/ClickHouse.pm",
         "version" : "0.05"
      }
   },
   "release_status" : "stable",

META.yml  view on Meta::CPAN

  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: ClickHouse
provides:
  ClickHouse:
    file: lib/ClickHouse.pm
    version: '0.05'
requires:
  Net::HTTP: '6.09'
  Test::More: '1.3'
  Try::Tiny: '0.24'
version: '0.05'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
x_spdx_expression: Artistic-2.0

cpanfile  view on Meta::CPAN

requires "Net::HTTP",                        "6.09";
requires "Test::More",                       "1.3";
requires "Try::Tiny",                        "0.24";

cpanfile.snapshot  view on Meta::CPAN

      File::Spec 0
      File::Temp 0
      PerlIO 0
      Scalar::Util 1.13
      Storable 0
      perl 5.008001
      utf8 0
  Try-Tiny-0.24
    pathname: E/ET/ETHER/Try-Tiny-0.24.tar.gz
    provides:
      Try::Tiny 0.24
    requirements:
      Carp 0
      Exporter 5.57
      ExtUtils::MakeMaker 0
      constant 0
      perl 5.006
      strict 0
      warnings 0
  URI-1.71
    pathname: E/ET/ETHER/URI-1.71.tar.gz

lib/ClickHouse.pm  view on Meta::CPAN

use warnings FATAL => 'all';

our $VERSION = '0.05';

use Net::HTTP;
use URI;
use URI::Escape;
use URI::QueryParam;
use Carp;
use Scalar::Util qw/looks_like_number/;
use Try::Tiny;

our $AUTOLOAD;

sub new {
    my ($class, %opts) = @_;
    my $self = bless {}, $class;
    $self->_init(%opts);
    return $self;
}



( run in 0.703 second using v1.01-cache-2.11-cpan-05444aca049 )