[libclass-tiny-perl] 04/22: add META and README

gregor herrmann gregoa at debian.org
Sun May 31 14:03:04 UTC 2015


This is an automated email from the git hooks/post-receive script.

gregoa pushed a commit to annotated tag release-0.001
in repository libclass-tiny-perl.

commit 8a93cd9a313f8d2d37865a1253fbdf3c639e0ed5
Author: David Golden <dagolden at cpan.org>
Date:   Thu Aug 15 22:10:26 2013 -0400

    add META and README
---
 META.json  | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 README.pod | 73 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 158 insertions(+)

diff --git a/META.json b/META.json
new file mode 100644
index 0000000..7d03c2a
--- /dev/null
+++ b/META.json
@@ -0,0 +1,85 @@
+{
+   "abstract" : "Minimalist class construction",
+   "author" : [
+      "David Golden <dagolden at cpan.org>"
+   ],
+   "dynamic_config" : 1,
+   "generated_by" : "Dist::Zilla version 4.300035, CPAN::Meta::Converter version 2.132140",
+   "license" : [
+      "apache_2_0"
+   ],
+   "meta-spec" : {
+      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
+      "version" : "2"
+   },
+   "name" : "Class-Tiny",
+   "no_index" : {
+      "directory" : [
+         "t",
+         "xt",
+         "examples",
+         "corpus"
+      ],
+      "package" : [
+         "DB"
+      ]
+   },
+   "prereqs" : {
+      "configure" : {
+         "requires" : {
+            "ExtUtils::MakeMaker" : "6.30"
+         }
+      },
+      "develop" : {
+         "requires" : {
+            "Pod::Coverage::TrustPod" : "0",
+            "Test::CPAN::Meta" : "0",
+            "Test::Pod" : "1.41",
+            "Test::Pod::Coverage" : "1.08"
+         }
+      },
+      "runtime" : {
+         "requires" : {
+            "Carp" : "0",
+            "perl" : "5.008001",
+            "strict" : "0",
+            "warnings" : "0"
+         }
+      },
+      "test" : {
+         "requires" : {
+            "ExtUtils::MakeMaker" : "0",
+            "File::Find" : "0",
+            "File::Spec::Functions" : "0",
+            "File::Temp" : "0",
+            "List::Util" : "0",
+            "Test::Deep" : "0",
+            "Test::FailWarnings" : "0",
+            "Test::Fatal" : "0",
+            "Test::More" : "0.96",
+            "lib" : "0"
+         }
+      }
+   },
+   "provides" : {
+      "Class::Tiny" : {
+         "file" : "lib/Class/Tiny.pm",
+         "version" : "0.001"
+      }
+   },
+   "release_status" : "stable",
+   "resources" : {
+      "bugtracker" : {
+         "web" : "https://github.com/dagolden/class-tiny/issues"
+      },
+      "homepage" : "https://metacpan.org/release/Class-Tiny",
+      "repository" : {
+         "type" : "git",
+         "url" : "git://github.com/dagolden/class-tiny.git",
+         "web" : "https://github.com/dagolden/class-tiny"
+      }
+   },
+   "version" : "0.001",
+   "x_authority" : "cpan:DAGOLDEN"
+}
+
diff --git a/README.pod b/README.pod
new file mode 100644
index 0000000..3398adb
--- /dev/null
+++ b/README.pod
@@ -0,0 +1,73 @@
+=pod
+
+=encoding utf-8
+
+=head1 NAME
+
+Class::Tiny - Minimalist class construction
+
+=head1 VERSION
+
+version 0.001
+
+=head1 SYNOPSIS
+
+  package MyClass;
+
+  use Class::Tiny qw( name color );
+
+  1;
+
+  package main;
+
+  MyClass->new( name => "Larry", color => "orange" );
+
+=head1 DESCRIPTION
+
+This module might be cool, but you'd never know it from the lack
+of documentation.
+
+This is inspired by L<Object::Tiny::RW> with just a couple more features
+to make it useful for class hierarchies.
+
+=for Pod::Coverage method_names_here
+
+=head1 USAGE
+
+Good luck!
+
+=head1 SEE ALSO
+
+Maybe other modules do related things.
+
+=for :stopwords cpan testmatrix url annocpan anno bugtracker rt cpants kwalitee diff irc mailto metadata placeholders metacpan
+
+=head1 SUPPORT
+
+=head2 Bugs / Feature Requests
+
+Please report any bugs or feature requests through the issue tracker
+at L<https://github.com/dagolden/class-tiny/issues>.
+You will be notified automatically of any progress on your issue.
+
+=head2 Source Code
+
+This is open source software.  The code repository is available for
+public review and contribution under the terms of the license.
+
+L<https://github.com/dagolden/class-tiny>
+
+  git clone git://github.com/dagolden/class-tiny.git
+
+=head1 AUTHOR
+
+David Golden <dagolden at cpan.org>
+
+=head1 COPYRIGHT AND LICENSE
+
+This software is Copyright (c) 2013 by David Golden.
+
+This is free software, licensed under:
+
+  The Apache License, Version 2.0, January 2004
+

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libclass-tiny-perl.git



More information about the Pkg-perl-cvs-commits mailing list