[Jifty-commit] r6014 - JiftyX-ModelHelpers/trunk

Jifty commits jifty-commit at lists.jifty.org
Tue Nov 18 12:31:02 EST 2008


Author: jesse
Date: Tue Nov 18 12:31:01 2008
New Revision: 6014

Added:
   JiftyX-ModelHelpers/trunk/LICENSE
   JiftyX-ModelHelpers/trunk/MANIFEST
   JiftyX-ModelHelpers/trunk/META.yml
   JiftyX-ModelHelpers/trunk/Makefile.PL
   JiftyX-ModelHelpers/trunk/README

Log:
Make sure you don't need Dist::Zilla to build JiftyX-ModelHelpers

Added: JiftyX-ModelHelpers/trunk/LICENSE
==============================================================================
--- (empty file)
+++ JiftyX-ModelHelpers/trunk/LICENSE	Tue Nov 18 12:31:01 2008
@@ -0,0 +1,32 @@
+This software is Copyright (c) 2008 by Kang-min Liu.
+
+This is free software, licensed under:
+
+  The MIT (X11) License
+
+The MIT License
+
+Permission is hereby granted, free of charge, to any person
+obtaining a copy of this software and associated
+documentation files (the "Software"), to deal in the Software
+without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense,
+and/or sell copies of the Software, and to permit persons to
+whom the Software is furnished to do so, subject to the
+following conditions:
+
+The above copyright notice and this permission notice shall
+be included in all copies or substantial portions of the
+Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT
+WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
+INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR
+PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
+CONNECTION WITH THE SOFTWARE OR THE USE OR
+OTHER DEALINGS IN THE SOFTWARE.

Added: JiftyX-ModelHelpers/trunk/MANIFEST
==============================================================================
--- (empty file)
+++ JiftyX-ModelHelpers/trunk/MANIFEST	Tue Nov 18 12:31:01 2008
@@ -0,0 +1,14 @@
+Changes
+LICENSE
+MANIFEST
+META.yml
+Makefile.PL
+README
+lib/JiftyX/ModelHelpers.pm
+t/Simapp/Makefile.PL
+t/Simapp/bin/jifty
+t/Simapp/etc/config.yml
+t/Simapp/lib/Simapp/Model/Book.pm
+t/Simapp/t/00-model-Book.t
+t/Simapp/t/helpers.t
+t/Simapp/t/m-helper.t
\ No newline at end of file

Added: JiftyX-ModelHelpers/trunk/META.yml
==============================================================================
--- (empty file)
+++ JiftyX-ModelHelpers/trunk/META.yml	Tue Nov 18 12:31:01 2008
@@ -0,0 +1,11 @@
+--- 
+abstract: Make it simpler to fetch records in Jifty.
+author: 
+  - Kang-min Liu <gugod at gugod.org>
+generated_by: Dist::Zilla::Plugin::MetaYaml version 1.003
+license: mit
+name: JiftyX-ModelHelpers
+requires: 
+  Exporter: 0
+  Jifty: 0.80408
+version: 0.22

Added: JiftyX-ModelHelpers/trunk/Makefile.PL
==============================================================================
--- (empty file)
+++ JiftyX-ModelHelpers/trunk/Makefile.PL	Tue Nov 18 12:31:01 2008
@@ -0,0 +1,19 @@
+
+use strict;
+use warnings;
+
+use ExtUtils::MakeMaker;
+
+WriteMakefile(
+  DISTNAME  => 'JiftyX-ModelHelpers',
+  NAME      => 'JiftyX::ModelHelpers',
+  AUTHOR    => 'Kang\-min\ Liu\ \<gugod\@gugod\.org\>',
+  ABSTRACT  => 'Make it simpler to fetch records in Jifty.',
+  VERSION   => '0.22',
+  EXE_FILES => [ qw() ],
+  (eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'mit') : ()),
+  PREREQ_PM    => {
+    "Jifty" => '0.80408',
+    "Exporter" => '0',
+  },
+);

Added: JiftyX-ModelHelpers/trunk/README
==============================================================================
--- (empty file)
+++ JiftyX-ModelHelpers/trunk/README	Tue Nov 18 12:31:01 2008
@@ -0,0 +1,13 @@
+
+
+This archive contains the distribution JiftyX-ModelHelpers, version
+0.22:
+
+  Make it simpler to fetch records in Jifty.
+
+This software is Copyright (c) 2008 by Kang-min Liu.
+
+This is free software, licensed under:
+
+  The MIT (X11) License
+


More information about the Jifty-commit mailing list