X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FSQL%2FTranslator%2FParser%2FStorable.pm;h=0cc3194aa75ce32d2a745d70cd69e8319c5592bd;hb=c0ec0e22d3f0e3852c00daac5ef5763010b410c3;hp=a615a5ae99bb23fdadc0c6c892834b854642a8a5;hpb=da06ac74ada30aacf656943306679a28605ad5c8;p=dbsrgits%2FSQL-Translator.git diff --git a/lib/SQL/Translator/Parser/Storable.pm b/lib/SQL/Translator/Parser/Storable.pm old mode 100755 new mode 100644 index a615a5a..0cc3194 --- a/lib/SQL/Translator/Parser/Storable.pm +++ b/lib/SQL/Translator/Parser/Storable.pm @@ -1,25 +1,5 @@ package SQL::Translator::Parser::Storable; -# ------------------------------------------------------------------- -# $Id: Storable.pm 1440 2009-01-17 16:31:57Z jawnsy $ -# ------------------------------------------------------------------- -# Copyright (C) 2002-2009 SQLFairy Authors -# -# This program is free software; you can redistribute it and/or -# modify it under the terms of the GNU General Public License as -# published by the Free Software Foundation; version 2. -# -# This program is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA -# 02111-1307 USA -# ------------------------------------------------------------------- - =head1 NAME SQL::Translator::Parser::Storable - parser for Schema objects serialized @@ -40,17 +20,17 @@ the data into a database tables or graphs. =cut use strict; -use vars qw($DEBUG $VERSION @EXPORT_OK); +use warnings; +our $VERSION = '1.59'; + +our $DEBUG; $DEBUG = 0 unless defined $DEBUG; -$VERSION = '1.99'; use Storable; -use Exporter; use SQL::Translator::Utils qw(debug normalize_name); use base qw(Exporter); - -@EXPORT_OK = qw(parse); +our @EXPORT_OK = qw(parse); sub parse { my ($translator, $data) = @_; @@ -68,8 +48,6 @@ sub parse { 1; -# ------------------------------------------------------------------- - =pod =head1 SEE ALSO