Skip to content

Commit

Permalink
m-b-0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ingydotnet committed Dec 18, 2014
1 parent 42f1a50 commit 8395b88
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Build.PL
Expand Up @@ -6,7 +6,7 @@ Module::Build::InlineModule->new(
dist_name => 'Alt-Acme-Math-XS-ModuleBuild',
dist_abstract => 'Math is HARD (faster)',
dist_author => 'Ingy döt Net <ingy@cpan.org>',
dist_version => '0.0.1',
dist_version => '0.0.2',
license => 'perl',
requires => {
'Test::More' => 0,
Expand Down
5 changes: 5 additions & 0 deletions Changes
@@ -1,4 +1,9 @@
---
version: 0.0.2
date: Wed Dec 17 23:53:32 PST 2014
changes:
- Release with Inline-Module-0.25
---
version: 0.0.1
date: Wed Dec 17 15:09:40 PST 2014
changes:
Expand Down
38 changes: 28 additions & 10 deletions README
@@ -1,30 +1,48 @@
NAME
Acme::Math::XS - Math is HARD (faster)
Acme::Math::XS - Math is HARD (faster!)

SYNOPSIS
use Acme::Math::XS;

print "2 + 2 = ${\add(2, 2)}\n";

DESCRIPTION
This is the smallest possible "XS" module written with Inline::Module.
This is a tiny example "XS" module. It was written to show how one would
write the same thing using Inline::Module, Inline, Inline::C and
Inline::CPP.

It has Alt(ternate) modules for all the common CPAN module frameworks.
It has a pure "XS" version and "Alt"(ternate) modules for all the common
CPAN module frameworks.

The source code for all these modules is in one git repository, on
separate branches: <https://github.com/ingydotnet/acme-math-xs-pm>

SEE
* Acme::Math::XS
Acme::Math::XS
Pure XS version, shipped with ExtUtils::MakeMaker.

* Alt::Acme::Math::XS::EUMM
Alt::Acme::Math::XS::EUMM
Inline::Module (using Inline::C) version shipped with plain old
ExtUtils::MakeMaker.

* Alt::Acme::Math::XS::DistZilla
Alt::Acme::Math::XS::DistZilla
Inline::Module version shipped with Dist::Zilla and
Dist::Zilla::Plugin::InlineModule.

* Alt::Acme::Math::XS::ZillaDist
Alt::Acme::Math::XS::ZillaDist
Inline::Module version shipped with Zilla::Dist.

* Alt::Acme::Math::XS::ModuleBuild
Alt::Acme::Math::XS::ModuleBuild
Inline::Module version shipped with Module::Build and
Module::Build::InlineModule.

* Alt::Acme::Math::XS::ModuleInstall
Alt::Acme::Math::XS::ModuleInstall
Inline::Module version shipped with Module::Build and
Module::Build::InlineModule.

* Alt::Acme::Math::XS::CPP
Alt::Acme::Math::XS::CPP
Inline::Module (using Inline::CPP) version shipped with
ExtUtils::MakeMaker.

AUTHORS
* Ingy döt Net <ingy@cpan.org>
Expand Down
2 changes: 1 addition & 1 deletion lib/Alt/Acme/Math/XS/ModuleBuild.pm
@@ -1,2 +1,2 @@
package Alt::Acme::Math::XS::ModuleBuild;
our $VERSION = '0.0.1';
our $VERSION = '0.0.2';

0 comments on commit 8395b88

Please sign in to comment.