X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit%2Flocal-lib.git;a=blobdiff_plain;f=lib%2Flocal%2Flib.pm;h=216426be0e9014cb38f4b3a76333430bdbc6535e;hp=a5f463a61843d8c2cc12909ad206c336fa19074e;hb=1730f48f02f596ea214aab12466dd6471a2990d7;hpb=752af3ad8da1a50dd2be9231526235a78b712b94 diff --git a/lib/local/lib.pm b/lib/local/lib.pm index a5f463a..216426b 100644 --- a/lib/local/lib.pm +++ b/lib/local/lib.pm @@ -8,11 +8,13 @@ use 5.006; use File::Spec (); use Config; -our $VERSION = '2.000_000'; # 2.0.0 +our $VERSION = '2.000004'; # 2.0.4 $VERSION = eval $VERSION; sub import { my ($class, @args) = @_; + push @args, @ARGV + if $0 eq '-'; my @steps; my %opts; @@ -426,7 +428,7 @@ sub build_powershell_env_declaration { my $value = $class->_interpolate($args, '$env:%s', '"', '`%s'); if (!$value) { - return qq{Remove-Item Env:\\$name;\n}; + return qq{Remove-Item -ErrorAction 0 Env:\\$name;\n}; } my $maybe_path_sep = qq{\$(if("\$env:$name"-eq""){""}else{"$_path_sep"})}; @@ -440,6 +442,16 @@ sub wrap_powershell_output { return $out || " \n"; } +sub build_fish_env_declaration { + my ($class, $name, $args) = @_; + my $value = $class->_interpolate($args, '$%s', '"', '\\%s'); + if (!defined $value) { + return qq{set -e $name;\n}; + } + $value =~ s/$_path_sep/ /g; + qq{set -x $name $value;\n}; +} + sub _interpolate { my ($class, $args, $var_pat, $escape, $escape_pat) = @_; return @@ -475,20 +487,6 @@ sub pipeline { } } -=begin testing - -#:: test pipeline - -package local::lib; - -{ package Foo; sub foo { -$_[1] } sub bar { $_[1]+2 } sub baz { $_[1]+3 } } -my $foo = bless({}, 'Foo'); -Test::More::ok($foo->${pipeline qw(foo bar baz)}(10) == -15); - -=end testing - -=cut - sub resolve_path { my ($class, $path) = @_; @@ -510,25 +508,6 @@ sub resolve_empty_path { } } -=begin testing - -#:: test classmethod setup - -my $c = 'local::lib'; - -=end testing - -=begin testing - -#:: test classmethod - -is($c->resolve_empty_path, '~/perl5'); -is($c->resolve_empty_path('foo'), 'foo'); - -=end testing - -=cut - sub resolve_home_path { my ($class, $path) = @_; return $path unless ($path =~ /^~/); @@ -558,17 +537,6 @@ sub resolve_relative_path { $path = File::Spec->rel2abs($path); } -=begin testing - -#:: test classmethod - -local *File::Spec::rel2abs = sub { shift; 'FOO'.shift; }; -is($c->resolve_relative_path('bar'),'FOObar'); - -=end testing - -=cut - sub ensure_dir_structure_for { my ($class, $path) = @_; unless (-d $path) { @@ -584,20 +552,6 @@ sub ensure_dir_structure_for { return; } -=begin testing - -#:: test classmethod - -File::Path::rmtree('t/var/splat'); - -$c->ensure_dir_structure_for('t/var/splat'); - -ok(-d 't/var/splat'); - -=end testing - -=cut - sub guess_shelltype { my $shellbin = defined $ENV{SHELL} @@ -612,12 +566,13 @@ sub guess_shelltype { for ($shellbin) { return - /csh/ ? 'csh' - : /command\.com/i ? 'cmd' - : /cmd\.exe/i ? 'cmd' - : /4nt\.exe/i ? 'cmd' - : /powershell\.exe/i ? 'powershell' - : 'bourne'; + /csh$/ ? 'csh' + : /fish/ ? 'fish' + : /command(?:\.com)?$/i ? 'cmd' + : /cmd(?:\.exe)?$/i ? 'cmd' + : /4nt(?:\.exe)?$/i ? 'cmd' + : /powershell(?:\.exe)?$/i ? 'powershell' + : 'bourne'; } }