Navigation Menu

Skip to content

Commit

Permalink
CPAN Release 0.02
Browse files Browse the repository at this point in the history
- Refactor to Inline-Module-0.25
  • Loading branch information
ingydotnet committed Dec 18, 2014
1 parent 150bfc3 commit b2436b9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
1 change: 1 addition & 0 deletions About
Expand Up @@ -57,6 +57,7 @@ Repository Layout

This repoository contains the following top level files and directories:

About - This file describing the repository. (generated)
Changes - Change log file in YAML.
Meta - All metadata for the project.
ReadMe.pod - Top level ReadMe file for GitHub. (generated)
Expand Down
5 changes: 5 additions & 0 deletions Changes
@@ -1,4 +1,9 @@
---
version: 0.02
date: Thu Dec 18 11:20:02 PST 2014
changes:
- Refactor to Inline-Module-0.25
---
version: 0.01
date: Sat Nov 22 07:10:08 UTC 2014
changes:
Expand Down
2 changes: 1 addition & 1 deletion Meta
@@ -1,7 +1,7 @@
=meta: 0.0.2

name: Module-Install-InlineModule
version: 0.01
version: 0.02
abstract: Module::Install Support for Inline::Module
homepage: https://metacpan.org/release/Module-Install-InlineModule
language: perl
Expand Down
12 changes: 5 additions & 7 deletions lib/Module/Install/InlineModule.pm
@@ -1,23 +1,21 @@
use strict; use warnings;
package Module::Install::InlineModule;
our $VERSION = '0.01';
our $VERSION = '0.02';

use base 'Module::Install::Base';
use Inline::Module;

# use XXX;
use Inline::Module();

sub inline {
my ($self, %args) = @_;

my $meta = \%args;
my $makemaker = {};
my $postamble = Inline::Module::postamble(
$makemaker,
inline => \%args,
inline => $meta,
);
$self->postamble($postamble);
my $IM = $Inline::Module::Self;
for my $module ($IM->included_modules) {
for my $module (Inline::Module->included_modules($meta)) {
$self->include($module);
}
}
Expand Down

0 comments on commit b2436b9

Please sign in to comment.