Add stub Clownfish/CFC/Model/Version.pm Fixes CLOWNFISH-5.
Project: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/repo Commit: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/commit/3b32cceb Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/3b32cceb Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/3b32cceb Branch: refs/heads/master Commit: 3b32cceba02e0254735f7f21aadc68bf10a97cbf Parents: fdf328c Author: Nick Wellnhofer <[email protected]> Authored: Fri Sep 5 20:36:03 2014 +0200 Committer: Nick Wellnhofer <[email protected]> Committed: Fri Sep 5 20:36:03 2014 +0200 ---------------------------------------------------------------------- .../perl/lib/Clownfish/CFC/Model/Version.pm | 22 ++++++++++++++++++++ 1 file changed, 22 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/lucy-clownfish/blob/3b32cceb/compiler/perl/lib/Clownfish/CFC/Model/Version.pm ---------------------------------------------------------------------- diff --git a/compiler/perl/lib/Clownfish/CFC/Model/Version.pm b/compiler/perl/lib/Clownfish/CFC/Model/Version.pm new file mode 100644 index 0000000..2cf69bd --- /dev/null +++ b/compiler/perl/lib/Clownfish/CFC/Model/Version.pm @@ -0,0 +1,22 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +package Clownfish::CFC::Model::Version; +use Clownfish::CFC; +our $VERSION = '0.004000'; +$VERSION = eval $VERSION; + +1; +
