Skip to content

Commit

Permalink
Add language to Meta
Browse files Browse the repository at this point in the history
  • Loading branch information
ingydotnet committed Jan 5, 2015
1 parent 0113c9f commit 11501dc
Show file tree
Hide file tree
Showing 4 changed files with 142 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .travis.yml
@@ -0,0 +1,45 @@
# DO NOT EDIT
#
# This .travis.yml file generated by Zilla-Dist-0.0.189.
#
# To update it, run:
#
# > zild update
#

language: perl

perl:
- '5.20'
- '5.18'
- '5.16'
- '5.14'
- '5.12'
- '5.10'
- '5.8'

install:
- cpanm --quiet --notest
Devel::Cover::Report::Coveralls

script:
- true && [ ! -e test/ ] ||
PERL5OPT=-MDevel::Cover=-coverage,statement,branch,condition,path,subroutine
prove -lv test/
- true && [ ! -e test/ ] || cover

after_success:
- cover -report coveralls

notifications:
irc:
channels:
- irc.perl.org#inline
on_success: change
on_failure: always
skip_join: true

# Hack to not run on tag pushes:
branches:
except:
- /^v?[0-9]+\.[0-9]+/
91 changes: 91 additions & 0 deletions About
@@ -0,0 +1,91 @@
About String-Slice
==================

This repository contains the source code for the Perl 5 module distribution:

String-Slice — "Shared Memory Slices of Bigger Strings"

by Ingy döt Net

Copyright 2012-2015. Ingy döt Net.

License
-------

This program is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.

See http://www.perl.com/perl/misc/Artistic.html

Installation
------------

You can install the latest release of String-Slice with this command:

cpanm String::Slice

If you don't have `cpanm` yet, installation is simple. See:

https://metacpan.org/pod/App::cpanminus#INSTALLATION

Or get the release information directly from:

https://metacpan.org/release/String-Slice

Open Source
-----------

The code for String-Slice is hosted at GitHub. The URL is:

https://github.com/ingydotnet/string-slice-pm

This project uses the Zilla-Dist framework for development and release
automation. You install it with:

cpanm -n Zilla::Dist # -n means "no test" which can save a lot of time

Once installed, run `zild make` to get a list of all the things you can do.
See https://metacpan.org/pod/distribution/Zilla-Dist/lib/Zilla/Dist.pod for
more information.

NOTE: If you just want to run the tests without installing Zilla::Dist, use:

prove -lv test/

Repository Layout
-----------------

This repoository contains the following top level files and directories:

Changes - Change log file in YAML.
Meta - All metadata for the project.
ReadMe.pod - Top level ReadMe file for GitHub. (generated)
.travis.yml - Travis CI test control file. (generated)

doc/ - Documentation directory.
.git/ - Git repository data.
lib/ - All the source code libraries (modules).

Resources
---------

Source - https://github.com/ingydotnet/string-slice-pm
Release - https://metacpan.org/release/String-Slice
Bugs - https://github.com/ingydotnet/string-slice-pm/issues
Pulls - https://github.com/ingydotnet/string-slice-pm/pulls
IRC - irc.perl.org#inline

Contributing
------------

If you would like to contribute to this project, please read:

https://metacpan.org/pod/Zilla::Dist::Contributing

for up-to-date instructions.





# This file generated by Zilla-Dist-0.0.189
1 change: 1 addition & 0 deletions Meta
Expand Up @@ -4,6 +4,7 @@ name: String-Slice
version: 0.04
abstract: Shared Memory Slices of Bigger Strings
homepage: https://metacpan.org/release/String-Slice
language: perl
license: perl
copyright: 2012-2015

Expand Down
5 changes: 5 additions & 0 deletions ReadMe.pod
Expand Up @@ -13,6 +13,11 @@ String::Slice - Shared Memory Slices of Bigger Strings
=for html
<a href="https://travis-ci.org/ingydotnet/string-slice-pm"><img src="https://travis-ci.org/ingydotnet/string-slice-pm.png" alt="string-slice-pm"></a>

=head1 Version

This document describes L<String::Slice> version B<0.04>.
";

=head1 Synopsis

use String::Slice;
Expand Down

0 comments on commit 11501dc

Please sign in to comment.