Added myself to credits
Steve Scaffidi [Wed, 9 Sep 2009 22:07:09 +0000 (18:07 -0400)]
BuildStem.pm
CREDITS
MANIFEST.SKIP
bin/chat2_demo
bin/run_stem

index cceef07..581e12f 100644 (file)
@@ -23,6 +23,7 @@ sub process_script_files {
        my $demo_dir   = File::Spec->catdir($self->blib, 'demo');
        File::Path::mkpath( $script_dir );
        File::Path::mkpath( $demo_dir );
+    $self->add_to_cleanup($demo_dir);
 
        foreach my $file (keys %$files) {
                my $dest_dir = $file =~ /_demo$/ ? $demo_dir : $script_dir ;
@@ -46,6 +47,7 @@ sub process_conf_files {
        my $conf_dir = File::Spec->catdir($self->blib, 'conf');
        File::Path::mkpath( $conf_dir );
 
+
        foreach my $file (keys %$files) {
                my $result = $self->copy_if_modified($file, $conf_dir, 'flatten') or next;
                $self->fix_shebang_line($result) if $self->is_unixish();
diff --git a/CREDITS b/CREDITS
index a83b226..130fd45 100644 (file)
--- a/CREDITS
+++ b/CREDITS
@@ -1,3 +1,4 @@
 People besides Uri who've contributed to Stem code and docs:
 
 Dave Rolsky - various code, bug fixes, docs, etc.
+Stephen R. Scaffidi - various bug fixes, docs, etc.
index b6d68d4..873403d 100644 (file)
@@ -14,6 +14,9 @@
 ^blib/
 ^MakeMaker-\d
 
+# demo files so we don't need to install
+^demo/
+
 # Temp, old and emacs backup files.
 ~$
 \.old$
index 9a4ec6f..b23a14f 100755 (executable)
@@ -7,6 +7,7 @@ $xskip = ( $^O eq 'solaris' ) ? 600 : 500 ;
 
 use File::Basename qw( basename );
 $ENV{PATH} .= ':' . basename( $0 ) . ':.';
+
 for my $prog qw( run_stem xterm telnet ) {
     die "Can't find $prog in PATH\n" if
         system( "which $prog >/dev/null 2>&1" ) != 0;
index 5ad494a..0dbe445 100755 (executable)
@@ -32,6 +32,7 @@ eval 'exec /usr/bin/perl -w -S $0 ${1+"$@"}'
 
 
 eval { use lib 'blib/lib' } if -d 'blib/lib';
+eval { use lib '../blib/lib' } if -d '../blib/lib';
 
 $Data::Dumper::Indent = 1 ;
 $Data::Dumper::Purity = 1 ;