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/20f6b910 Tree: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/tree/20f6b910 Diff: http://git-wip-us.apache.org/repos/asf/lucy-clownfish/diff/20f6b910 Branch: refs/heads/0.4 Commit: 20f6b91000d99995a784cf19203273559f962775 Parents: 40cae5d 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:43 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/20f6b910/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; +
