Skip to content

Commit

Permalink
eumm-0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
ingydotnet committed Dec 18, 2014
1 parent 3c8ea23 commit 49e6945
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 4 deletions.
5 changes: 5 additions & 0 deletions Changes
@@ -1,4 +1,9 @@
---
version: 0.0.9
date: Wed Dec 17 23:49:19 PST 2014
changes:
- Update README
---
version: 0.0.8
date: Wed Dec 17 23:25:55 PST 2014
changes:
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Expand Up @@ -9,7 +9,7 @@ use Inline::Module;

WriteMakefile(
NAME => 'Alt::Acme::Math::XS::EUMM',
VERSION => '0.0.8',
VERSION => '0.0.9',
ABSTRACT => 'Math is HARD (faster!)',
AUTHOR => 'Ingy döt Net <ingy@cpan.org>',
LICENSE => 'perl',
Expand Down
39 changes: 37 additions & 2 deletions README
@@ -1,13 +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::C.
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 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
Pure XS version, shipped with ExtUtils::MakeMaker.

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

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

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

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

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

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/EUMM.pm
@@ -1,2 +1,2 @@
package Alt::Acme::Math::XS::EUMM;
our $VERSION = '0.0.8';
our $VERSION = '0.0.9';

0 comments on commit 49e6945

Please sign in to comment.