Skip to content

Instantly share code, notes, and snippets.

5th Circle – Shiva’s ChargeEX: When you use the charge
action, you can attack everyone within [Melee] range
as you make the charge. Make one attack roll, and
compare the result of that attack roll to each opponent’s
AC. Roll one attack and use the result for all opponents.
These attacks do not result in critical hits. These attacks
may not generate bonus attacks (ex. Cleave).
#!perl
package Test::SSH;
use strict;
use warnings;
use Moose;
use Moose::Util::TypeConstraints;
use MooseX::Types::PortNumber 'PortNumber';
* [02ad49e] (HEAD, origin/master, origin/HEAD, master) Small tweaks to changes file
* 17 commits
| * [a271ec4] (origin/stable/2.02) this error message changed
| * 20 commits
| * [7bed442] (2.0204) Disable GitUpToDate temporarily
| * 7 commits
| * [dc87260] (2.0203) version bump
| * 7 commits
| * [3c1c3b8] (2.0202) conflict on MooseX::Types::Parameterizable 0.05
| * 7 commits
* [02ad49e] (HEAD, origin/master, origin/HEAD, master) Small tweaks to changes file
* [f0860ff] Ignore CMOP's load_class & is_class_loaded
* [d18ab02] todo--
* [10b900f] bump class::load dep
* [a77d943] handle this in package::stash
* [c7fce18] Remove deprecation warning for CMOP::load_class & friends, but mention that they've been removed from the docs in Changes
* [c07248f] document deprecations in Changes & Delta
* [2f41724] Deprecate CMOP::{load_class, is_class_loaded, load_first_existing_class}
* [fe96581] Add deps on next Class::Load and Class::Load::XS
* [f3633d9] remove tests for load_class & friends - copied some interesting tests to the Class::Load test suite first
* [02ad49e] (HEAD, origin/master, origin/HEAD, master) Small tweaks to changes file
| * [a271ec4] (origin/stable/2.02) this error message changed
* 17 commits
| * [7bed442] (2.0204) Disable GitUpToDate temporarily
| * [dc87260] (2.0203) version bump
| * [3c1c3b8] (2.0202) conflict on MooseX::Types::Parameterizable 0.05
| * [bdf612b] (2.0201) version bump
| | * [b32f1c2] (origin/topic/moose-cmop-merge) merge Meta method classes up to CMOP
| * 45 commits
| | * 7 commits
{ package Plack::Util::RunAfterRequest; sub DESTROY { $_[0]->() } }
sub Plack::Util::run_after_request {
my ($env, $code) = @_;
my $queue = $env->{'plack.run_after_request'} ||= [];
push @$queue, bless sub { $code->() }, 'Plack::Util::RunAfterRequest';
}
package Stuffer;
use Moose;
has all_stuff => (
isa => 'HashRef',
traits => ['Hash'],
handles => {
get_stuffed => 'elements',
_has_stuff => 'exists',
_get_stuff => 'get',
_set_stuff => 'set',
Running Mkbootstrap for Moose ()
chmod 644 Moose.bs
rm -f blib/arch/auto/Moose/Moose.so
cc -shared -O2 -L/usr/local/lib -fstack-protector xs/Attribute.o xs/AttributeCore.o xs/Class.o xs/Generated.o xs/HasAttributes.o xs/HasMethods.o xs/Inlined.o xs/Instance.o xs/Method.o xs/Moose.o xs/MOP.o xs/Package.o Moose.o mop.o -o blib/arch/auto/Moose/Moose.so \
\
Moose.o: In function `boot_Moose':
Moose.c:(.text+0x0): multiple definition of `boot_Moose'
xs/Moose.o:Moose.c:(.text+0x0): first defined here
Moose.o: In function `XS_Moose__Exporter__flag_as_reexport':
diff --git a/lib/GraphViz.pm b/lib/GraphViz.pm
index 549c1fd..f69bb58 100644
--- a/lib/GraphViz.pm
+++ b/lib/GraphViz.pm
@@ -1124,17 +1124,12 @@ sub _as_debug {
$cluster->{label} = $name;
delete $cluster->{name};
}
- $attrs = _attributes($cluster);
+ $attrs = _attributes($cluster, for_cluster => 1);
diff --git a/lib/Starman/Server.pm b/lib/Starman/Server.pm
index c98af6f..a927e0d 100644
--- a/lib/Starman/Server.pm
+++ b/lib/Starman/Server.pm
@@ -21,6 +21,29 @@ my $null_io = do { open my $io, "<", \""; $io };
use Net::Server::SIG qw(register_sig);
+sub SSL_key_file {
+ my ($self, $host, $port, $proto) = @_;