This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use v5.10; | |
use strict; | |
use warnings; | |
use Carp; | |
use IO::Prompt::Tiny 'prompt'; | |
use Net::GitHub; | |
use Path::Tiny; | |
use RT::Client::REST::Ticket; | |
use RT::Client::REST; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package Project::Role::Config; | |
use Moose::Role; | |
use Project::ConfigSingleton; | |
use Project::ToolSet; | |
Project::ConfigSingleton->initialize; | |
# The config hash provided by this role is managed by a singleton class | |
has 'config_singleton' => ( | |
lazy => 1, | |
isa => 'Project::ConfigSingleton', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use Carp; | |
BEGIN { | |
# uncomment to test pure Perl Mouse | |
# $ENV{MOUSE_PUREPERL} = 1; |
NewerOlder