summaryrefslogtreecommitdiff
path: root/dist/Exporter
Commit message (Collapse)AuthorAgeFilesLines
* dist/Exporter - Synchronize Changes and Makefile.PL from CPAN releaseYves Orton2023-03-033-0/+135
| | | | | | | | Minor tweaks to Makefile.PL to reflect that the file require 5.006, so no need to do anything special for 5.005. Also fixed the LICENSE field to be 'perl_5' and not 'perl'. I did whitespace cleanup on Changes at the same time.
* Exporter: Document non-inheriting as default mechanismDan Book2021-08-232-15/+32
|
* Make Exporter strict and warnings compliantTodd Rinaldo2020-10-054-30/+27
| | | | Update optree_specials since OptreeCheck.pm uses Exporter.
* put version directly in Exporter::HeavyGraham Knop2020-07-303-3/+8
| | | | | | | | | | | Modules should have their version number directly in the module, not try to pull it in from another module. The Exporter module that would be loaded may not correspond to the Exporter::Heavy that is having its version checked. Generally, pulling a version from another module would fail on something like PAUSE or a CPAN client, but because Exporter is probably already loaded, the old code would usually just pick the version of the currently installed Exporter, rather than the one corresponding to the Exporter::Heavy module that is being checked.
* Clean up after previous commitDagfinn Ilmari Mannsåker2019-06-271-1/+3
| | | | | - Two empty lines betwen tests - Remove unused $err variable
* Fix leading spaces in Exporter error messageDagfinn Ilmari Mannsåker2019-06-263-5/+13
| | | | | The second and subsequent lines when trying to import non-existent items had a leading space (or whatever $" happened to be).
* Remove 'our' from one non-Exporter-related variable.James E Keenan2018-03-291-1/+1
|
* Use lexically scoped ('our') variables in POD examples.James E Keenan2018-03-291-17/+17
| | | | | | | | | Per Dan Book recommendation, as this is code likely to be copied-and-pasted by people new to Perl. Keep podcheck happy. For: RT # 133040
* Increase $Exporter::VERSION to 5.72Father Chrysostomos2014-11-111-1/+1
|
* rename anonymous list -> array in docsDoug Bell2014-11-111-1/+1
|
* Correct illegal use of >> in Exporter POD.Todd Rinaldo2014-05-311-2/+2
| | | | | | Discovered during POD unit tests on release of 5.70 to CPAN. Also correct AUTHORS and checkAUTHORS.PL email to toddr@cpan.org. Bump Exporter $VERSION to 5.71.
* Correct typos reported by Terry Speirs++.James E Keenan2013-09-101-12/+12
| | | | For: RT #119673
* bump $Exporter::VERSION (and hence $Exporter::Heavy::VERSION)Tony Cook2013-07-261-1/+1
|
* [perl #39739] Exporter::Heavy ignores custom $SIG{__WARN__} handlersTony Cook2013-07-262-1/+6
|
* [perl #39739] TODO test for Exporter respecting warning handlersTony Cook2013-07-261-0/+39
|
* Move Exporter from lib/ to dist/Exporter/Nicholas Clark2013-07-033-0/+1084
Exporter has been considered dual life, upstream blead, since commit 6295adb525682844 (Sep 2006), but it was not moved to dist/ in 2009 with the other dual-life modules because it was not possible to disentangle it from the early stages of the build bootstrapping. The build bootstrapping is now sufficiently simplified that it's possible to move it to dist/