Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ gracefully with `eval { require ... }` and SKIP blocks.
direct values in sync mode. Use `Net::ACME2::PromiseUtil::then()` internally.
- **Exceptions**: Use `Net::ACME2::X::Generic` (via X::Tiny). Some internal dies
use plain strings — this is the existing pattern, not a bug to fix.
- **Shebangs**: Use `#!/usr/bin/perl`, not `#!/usr/bin/env perl`.
MakeMaker's `fixin` automatically adjusts the path at install time,
but only recognizes the canonical `/usr/bin/perl` form.

## Gotchas

Expand Down
2 changes: 1 addition & 1 deletion examples/dns-01.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

package examples::dns_01;

Expand Down
2 changes: 1 addition & 1 deletion examples/dns-01_async.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

package examples::dns_01_async;

Expand Down
2 changes: 1 addition & 1 deletion examples/http-01.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

package examples::http_01;

Expand Down
2 changes: 1 addition & 1 deletion examples/http-01_async.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

package examples::http_01_async;

Expand Down
2 changes: 1 addition & 1 deletion examples/lib/Net_ACME2_Example_HTTP01.pm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

package Net_ACME2_Example_HTTP01;

Expand Down
2 changes: 1 addition & 1 deletion examples/tls-alpn-01.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

package examples::tls_alpn_01;

Expand Down
2 changes: 1 addition & 1 deletion examples/tls_alpn_01_client.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion examples/tls_alpn_01_server.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion t/Net-ACME2-Authorization.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion t/Net-ACME2-Challenge-dns_01.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion t/Net-ACME2-Challenge-dns_account_01.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion t/Net-ACME2-Challenge-tls_alpn_01.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion t/Net-ACME2-Challenge.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion t/Net-ACME2-Curl.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion t/Net-ACME2-EAB.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion t/Net-ACME2-Error.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion t/Net-ACME2-HTTP.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion t/Net-ACME2-JWTMaker.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion t/Net-ACME2-get-certificate-guard.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion t/Net-ACME2-get_orders.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion t/Net-ACME2-key-change.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion t/Net-ACME2-link-alternates.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion t/Net-ACME2-order-lifecycle.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion t/Net-ACME2-revoke.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion t/Net-ACME2-update-fields.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
2 changes: 1 addition & 1 deletion t/Net-ACME2.t
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env perl
#!/usr/bin/perl

use strict;
use warnings;
Expand Down
Loading