API-Handle

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Moose::Role" : "0",
            "Nour::Config" : "0",
            "Nour::Database" : "0",
            "Nour::Printer" : "0",
            "OX::OAuth" : "0",
            "String::CamelCase" : "0",
            "Tie::Hash::Indexed" : "0",
            "URI" : "0",
            "XML::TreePP" : "0",
            "bytes" : "0",
            "feature" : "0",
            "namespace::autoclean" : "0"
         }
      }
   },
   "release_status" : "stable",
   "resources" : {
      "bugtracker" : {
         "web" : "https://github.com/quran/api-handle/issues"
      },
      "repository" : {

META.yml  view on Meta::CPAN

  Moose::Role: 0
  Nour::Config: 0
  Nour::Database: 0
  Nour::Printer: 0
  OX::OAuth: 0
  String::CamelCase: 0
  Tie::Hash::Indexed: 0
  URI: 0
  XML::TreePP: 0
  bytes: 0
  feature: 0
  namespace::autoclean: 0
resources:
  bugtracker: https://github.com/quran/api-handle/issues
  repository: git://github.com/quran/api-handle.git
version: 0.02

Makefile.PL  view on Meta::CPAN

    "Moose::Role" => 0,
    "Nour::Config" => 0,
    "Nour::Database" => 0,
    "Nour::Printer" => 0,
    "OX::OAuth" => 0,
    "String::CamelCase" => 0,
    "Tie::Hash::Indexed" => 0,
    "URI" => 0,
    "XML::TreePP" => 0,
    "bytes" => 0,
    "feature" => 0,
    "namespace::autoclean" => 0
  },
  "VERSION" => "0.02",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.56) } ) {

lib/API/Handle.pm  view on Meta::CPAN

package API::Handle;
{
  $API::Handle::VERSION = '0.02';
}

use Moose::Role;
use namespace::autoclean;
use HTTP::Request;
use bytes;
use feature ':5.10';
use String::CamelCase qw/camelize decamelize/;
use Tie::Hash::Indexed;

has _config => (
	is => 'rw'
	, isa => 'Nour::Config'
	, handles => [ qw/config/ ]
	, required => 1
	, lazy => 1
	, default => sub {

lib/API/Handle/Base.pm  view on Meta::CPAN

package API::Handle::Base;
{
  $API::Handle::Base::VERSION = '0.02';
}
use Moose;
use namespace::autoclean;
use Carp;
use feature ':5.10';

with 'API::Handle';

# Generic base class.

__PACKAGE__->meta->make_immutable;

1;

__END__

lib/API/Handle/Google/DFP.pm  view on Meta::CPAN

package API::Handle::Google::DFP;
{
  $API::Handle::Google::DFP::VERSION = '0.02';
}
use Moose;
use namespace::autoclean;
use HTTP::Request;
use Carp;
use Data::Dumper;
use feature ':5.10';

with 'API::Handle';
has _config => (
	is => 'rw'
	, isa => 'Nour::Config'
	, handles => {
		  config => 'config'
		, merge_config => 'merge'
		, write_config => 'write'
	}

lib/API/Handle/OpenX.pm  view on Meta::CPAN

package API::Handle::OpenX;
{
  $API::Handle::OpenX::VERSION = '0.02';
}
use Moose;
use namespace::autoclean;
use Carp;
use feature ':5.10';
use OX::OAuth;

with 'API::Handle';
has _config => (
	is => 'rw'
	, isa => 'Nour::Config'
	, handles => {
		  config => 'config'
		, merge_config => 'merge'
		, write_config => 'write'

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.025 second using v1.00-cache-2.02-grep-82fe00e-cpan-2c419f77a38b )