Browse Source

began a rudimentary Perl README.md

Joel Berger 11 years ago
parent
commit
2bdd8cadbb
2 changed files with 18 additions and 1 deletions
  1. 18 0
      frameworks/Perl/README.md
  2. 0 1
      frameworks/Perl/mojolicious/bash_profile.sh

+ 18 - 0
frameworks/Perl/README.md

@@ -0,0 +1,18 @@
+# Bash Configuration
+
+Perl is installed in the `$IROOT` directory. Currently, the Perl interpreter
+used by the test is in version 5.18 family. It is highly recommended that
+you have a `bash_profile.sh` in your app's directory that contains at least
+
+    #!/bin/bash
+
+    export PERL_HOME=${IROOT}/perl-5.18
+    export PATH="$PERL_HOME/bin:$PATH"
+
+This will provide the `$PERL_HOME` path - should you need it - and 
+allow all apps installed by Perl to be used directly.
+
+# Dependency Management
+
+While installing Perl, the [`cpanm`](https://metacpan.org/pod/distribution/App-cpanminus/bin/cpanm)
+client is installed as well as the more advanced [`Carton`](https://metacpan.org/pod/Carton).

+ 0 - 1
frameworks/Perl/mojolicious/bash_profile.sh

@@ -1,5 +1,4 @@
 #!/bin/bash
 #!/bin/bash
 
 
 export PERL_HOME=${IROOT}/perl-5.18
 export PERL_HOME=${IROOT}/perl-5.18
-
 export PATH="$PERL_HOME/bin:$PATH"
 export PATH="$PERL_HOME/bin:$PATH"