[Jifty-commit] r7211 - in plugins/Jifty-Plugin-GoogleMap: . t

Jifty commits jifty-commit at lists.jifty.org
Wed Jun 10 02:21:58 EDT 2009


Author: yves
Date: Wed Jun 10 02:21:57 2009
New Revision: 7211

Added:
   plugins/Jifty-Plugin-GoogleMap/Changes
   plugins/Jifty-Plugin-GoogleMap/README
   plugins/Jifty-Plugin-GoogleMap/t/00-load.t
Modified:
   plugins/Jifty-Plugin-GoogleMap/Makefile.PL
   plugins/Jifty-Plugin-GoogleMap/lib/Jifty/Plugin/GoogleMap.pm

Log:
ready to upload to cpan                                                          
 * update Makefile.PL for new Module::Install, all_from file
 * add Changes and README                                                                                
 * add Author (from svn log) and copyright notice
 * add minimal load test


Added: plugins/Jifty-Plugin-GoogleMap/Changes
==============================================================================
--- (empty file)
+++ plugins/Jifty-Plugin-GoogleMap/Changes	Wed Jun 10 02:21:57 2009
@@ -0,0 +1,7 @@
+Revision history for Perl module Jifty::Plugin::Authentication::CAS
+
+0.10 Tue, 09 Jun 2009 20:29:15 +0200
+    - mistake in test path
+
+0.9  Tue, 15 May 2009 10:09:50 +0200
+    - original version for CPAN

Modified: plugins/Jifty-Plugin-GoogleMap/Makefile.PL
==============================================================================
--- plugins/Jifty-Plugin-GoogleMap/Makefile.PL	(original)
+++ plugins/Jifty-Plugin-GoogleMap/Makefile.PL	Wed Jun 10 02:21:57 2009
@@ -1,11 +1,11 @@
-use inc::Module::Install 0.46;
+use inc::Module::Install;
 name('Jifty-Plugin-GoogleMap');
-version_from('lib/Jifty/Plugin/GoogleMap.pm');
+all_from('lib/Jifty/Plugin/GoogleMap.pm');
 
 requires('Jifty');
 
 auto_install();
-tests(qw( t/*/t/*.t ));
+tests(qw( t/*.t ));
 
 install_share;
 

Added: plugins/Jifty-Plugin-GoogleMap/README
==============================================================================
--- (empty file)
+++ plugins/Jifty-Plugin-GoogleMap/README	Wed Jun 10 02:21:57 2009
@@ -0,0 +1,31 @@
+NAME
+    Jifty::Plugin::GoogleMap - GoogleMap plugin
+
+SYNOPSIS
+    # In your jifty config.yml under the framework section:
+
+      Plugins:
+        - GoogleMap:
+            apikey: ABQIAAAA66LEkTHjdh-UhDZ_NkfdjBTb-vLQlFZmc2N8bgWI8YDPp5FEVBTjCfxPSocuJ53SPMNQDO7Sywpp_w
+
+    Note that this is an api for http://localhost:8888/ -- you will need to
+    provide your own API key for your own site.
+
+    In your model class schema description, add the following:
+
+        column location => is GeoLocation;
+
+DESCRIPTION
+    This plugin provides a Google-map widget for Jifty, as well as a new
+    GeoLocation column type.
+
+  init
+AUTHOR
+    Alex Vandiver
+
+LICENSE
+    Copyright 2005-2009 Best Practical Solutions, LLC.
+
+    This program is free software and may be modified and distributed under
+    the same terms as Perl itself.
+

Modified: plugins/Jifty-Plugin-GoogleMap/lib/Jifty/Plugin/GoogleMap.pm
==============================================================================
--- plugins/Jifty-Plugin-GoogleMap/lib/Jifty/Plugin/GoogleMap.pm	(original)
+++ plugins/Jifty-Plugin-GoogleMap/lib/Jifty/Plugin/GoogleMap.pm	Wed Jun 10 02:21:57 2009
@@ -73,5 +73,17 @@
         sub { _init_handler is \&_geolocation, render_as 'Jifty::Plugin::GoogleMap::Widget' },
 );
 
+=head1 AUTHOR
+
+Alex Vandiver
+
+=head1 LICENSE
+
+Copyright 2005-2009 Best Practical Solutions, LLC.
+
+This program is free software and may be modified and distributed under the same terms as Perl itself.
+
+=cut
+
 
 1;

Added: plugins/Jifty-Plugin-GoogleMap/t/00-load.t
==============================================================================
--- (empty file)
+++ plugins/Jifty-Plugin-GoogleMap/t/00-load.t	Wed Jun 10 02:21:57 2009
@@ -0,0 +1,7 @@
+#!/usr/bin/env perl
+
+use warnings;
+use strict;
+
+use Test::More tests => 1;
+use_ok('Jifty::Plugin::Authentication::CAS');


More information about the Jifty-commit mailing list