Skip to content

Commit

Permalink
Build results of 810b776 (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
yanick committed Mar 11, 2017
2 parents 810b776 + 7f28b2f commit 79a2aa0
Show file tree
Hide file tree
Showing 23 changed files with 1,474 additions and 203 deletions.
4 changes: 0 additions & 4 deletions .gitignore

This file was deleted.

1 change: 0 additions & 1 deletion .mailmap

This file was deleted.

13 changes: 13 additions & 0 deletions AUTHOR_PLEDGE
@@ -0,0 +1,13 @@

# CPAN Covenant for Email-Simple-Markdown

I, Yanick Champoux <yanick@cpan.org>, hereby give modules@perl.org permission to grant co-maintainership
to Email-Simple-Markdown, if all the following conditions are met:

(1) I haven't released the module for a year or more
(2) There are outstanding issues in the module's public bug tracker
(3) Email to my CPAN email address hasn't been answered after a month
(4) The requester wants to make worthwhile changes that will benefit CPAN

In the event of my death, then the time-limits in (1) and (3) do not apply.

12 changes: 12 additions & 0 deletions CONTRIBUTORS
@@ -0,0 +1,12 @@

# EMAIL-SIMPLE-MARKDOWN CONTRIBUTORS #

This is the (likely incomplete) list of people who have helped
make this distribution what it is, either via code contributions,
patches, bug reports, help with troubleshooting, etc. A huge
'thank you' to all of them.

* Alessandro Ranellucci
* Gavin Carr


15 changes: 4 additions & 11 deletions Changes
@@ -1,18 +1,11 @@
Revision history for Email-Simple-Markdown

{{$NEXT}}
[ API CHANGES ]

0.7.2 2017-03-10
[ BUG FIXES ]
- Need List::Util >= 1.29

[ DOCUMENTATION ]

[ ENHANCEMENTS ]

[ NEW FEATURES ]
- Need List::Util >= 1.29

[ STATISTICS ]
- code churn: 2 files changed, 10 insertions(+), 3 deletions(-)

0.7.1 2017-02-26
[ BUG FIXES ]
Expand Down Expand Up @@ -62,7 +55,7 @@ Revision history for Email-Simple-Markdown

0.5.0 2012-07-10
[ ENHANCEMENTS ]
- charset can be specified for email content. (patch by
- charset can be specified for email content. (patch by
Alessandro Ranellucci, issue#4)

[ STATISTICS ]
Expand Down
43 changes: 43 additions & 0 deletions INSTALL
@@ -0,0 +1,43 @@
This is the Perl distribution Email-Simple-Markdown.

Installing Email-Simple-Markdown is straightforward.

## Installation with cpanm

If you have cpanm, you only need one line:

% cpanm Email::Simple::Markdown

If you are installing into a system-wide directory, you may need to pass the
"-S" flag to cpanm, which uses sudo to install the module:

% cpanm -S Email::Simple::Markdown

## Installing with the CPAN shell

Alternatively, if your CPAN shell is set up, you should just be able to do:

% cpan Email::Simple::Markdown

## Manual installation

As a last resort, you can manually install it. Download the tarball, untar it,
then build it:

% perl Makefile.PL
% make && make test

Then install it:

% make install

If you are installing into a system-wide directory, you may need to run:

% sudo make install

## Documentation

Email-Simple-Markdown documentation is available as POD.
You can run perldoc from a shell to read the documentation:

% perldoc Email::Simple::Markdown

0 comments on commit 79a2aa0

Please sign in to comment.