Merge branch 'master' of ssh://erxz.com/~/git_repo/stem
[urisagit/Stem.git] / notes / srs_notes.txt
CommitLineData
3b8df42f 1Odd sort of behavior... when dumping \%:: with Data::Dumper in Stem/Conf.pm
2(insert a print @ line 234)
3
4the program just "freezes"...
5
6
09baddbd 7
8# A simple script to (naievely) figure out the non-core dependencies in Stem:
9# this for example, looks for anything not core in perl 5.008001
10
11egrep -hR '^use ' ./lib/ |
12 sed 's/[^a-zA-Z0-9_: ]//' |
13 egrep -v 'use (Stem|[0-9]+)' |
14 sort -u |
15 cut -d ' ' -f 2 |
16 perl -MModule::CoreList -M5.010 \
17 -ne 'chomp; say unless exists $Module::CoreList::version{"5.008001"}{$_}'
18