Skip to content

Commit

Permalink
CPAN Release 0.22
Browse files Browse the repository at this point in the history
- Use RegExp (not RecDescent) for Inline::C
  • Loading branch information
ingydotnet committed Dec 17, 2014
1 parent 706b213 commit 5578aa5
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
7 changes: 3 additions & 4 deletions .travis.yml
@@ -1,6 +1,6 @@
# DO NOT EDIT
#
# This .travis.yml file generated by Zilla-Dist-0.0.174.
# This .travis.yml file generated by Zilla-Dist-0.0.176.
#
# To update it, run:
#
Expand All @@ -25,11 +25,10 @@ install:
Inline::C

script:
- test -e test &&
- true && [ ! -e test/ ] ||
PERL5OPT=-MDevel::Cover=-coverage,statement,branch,condition,path,subroutine
prove -lv test/
|| true
- test -e test && cover || true
- true && [ ! -e test/ ] || cover

after_success:
- cover -report coveralls
Expand Down
2 changes: 1 addition & 1 deletion About
Expand Up @@ -91,4 +91,4 @@ for up-to-date instructions.



# This file generated by Zilla-Dist-0.0.174
# This file generated by Zilla-Dist-0.0.176
5 changes: 5 additions & 0 deletions Changes
@@ -1,4 +1,9 @@
---
version: 0.22
date: Tue Dec 16 23:32:17 EST 2014
changes:
- Use RegExp (not RecDescent) for Inline::C
---
version: 0.21
date: Sat Dec 13 11:29:29 EST 2014
changes:
Expand Down
2 changes: 1 addition & 1 deletion Meta
@@ -1,7 +1,7 @@
=meta: 0.0.1

name: Inline-Module
version: 0.21
version: 0.22
abstract: Support for Inline-based CPAN Extension Modules
homepage: https://metacpan.org/release/Inline-Module

Expand Down
4 changes: 2 additions & 2 deletions lib/Inline/Module.pm
@@ -1,6 +1,6 @@
use strict; use warnings;
package Inline::Module;
our $VERSION = '0.21';
our $VERSION = '0.22';

use Config();
use File::Path();
Expand Down Expand Up @@ -97,7 +97,7 @@ sub importer {
Inline->import(
Config =>
directory => $inline_build_path,
($lang eq 'C') ? (using => 'Inline::C::Parser::RecDescent') : (),
($lang eq 'C') ? (using => 'Inline::C::Parser::RegExp') : (),
name => $stub_module,
CLEAN_AFTER_BUILD => 0,
);
Expand Down

0 comments on commit 5578aa5

Please sign in to comment.