Changeset 838


Ignore:
Timestamp:
11/09/08 01:45:47 (3 years ago)
Author:
szabgab
Message:

release 0.16 of Padre::Plugin::Parrot

Location:
projects/Padre-Plugin-Parrot
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • projects/Padre-Plugin-Parrot/Build.PL

    r793 r838  
    22use warnings; 
    33use Module::Build; 
     4 
     5if (not $ENV{PARROT_PATH}) { 
     6    warn "PARROT_PATH needs to be defined\n"; 
     7    exit 0; 
     8} 
     9 
     10unshift @INC, ( 
     11    "$ENV{PARROT_PATH}/ext/Parrot-Embed/blib/lib", 
     12    "$ENV{PARROT_PATH}/ext/Parrot-Embed/blib/arch", 
     13    "$ENV{PARROT_PATH}/ext/Parrot-Embed/_build/lib", 
     14); 
     15require Parrot::Embed; 
     16if ($@) { 
     17    warn "Parrot::Embed needs to be compiled\n"; 
     18    exit 0; 
     19} 
    420 
    521my $builder = Module::Build->new( 
  • projects/Padre-Plugin-Parrot/Changes

    r793 r838  
    11Revision history for Padre-Plugin-Parrot 
    22 
    3 0.16    2008.11.07 
     30.16    2008.11.09 
    44        Moved to its own distribution 
     5        Checking if Parrot::Embed is available 
    56 
    670.15 
  • projects/Padre-Plugin-Parrot/MANIFEST

    r793 r838  
    55lib/Padre/Plugin/Parrot.pm 
    66t/00-load.t 
    7 t/pod-coverage.t 
    8 t/pod.t 
  • projects/Padre-Plugin-Parrot/lib/Padre/Plugin/Parrot.pm

    r837 r838  
    33use warnings; 
    44 
    5 our $VERSION = '0.15'; 
     5our $VERSION = '0.16'; 
    66 
    77use Padre::Wx (); 
Note: See TracChangeset for help on using the changeset viewer.