Skip to content

Commit

Permalink
m-i-0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ingydotnet committed Dec 18, 2014
1 parent c78ab36 commit cae8ec4
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.3
date: Thu Dec 18 00:11:25 PST 2014
changes:
- Release with Inline-Module-0.25
---
version: 0.0.2
date: Sun Dec 14 22:37:34 PST 2014
changes:
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
@@ -1,7 +1,7 @@
use inc::Module::Install;

name 'Alt-Acme-Math-XS-ModuleInstall';
version '0.0.2';
version '0.0.3';
perl_version '5.8.1';
all_from 'lib/Acme/Math/XS.pod';
inline module => 'Acme::Math::XS';
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/ModuleInstall.pm
@@ -1,2 +1,2 @@
package Alt::Acme::Math::XS::ModuleInstall;
our $VERSION = '0.0.2';
our $VERSION = '0.0.3';

0 comments on commit cae8ec4

Please sign in to comment.