README

Fri, 28 Dec 2012 17:00:38 +0100

author
Mike Becker <universe@uap-core.de>
date
Fri, 28 Dec 2012 17:00:38 +0100
changeset 37
cf65b0ddd030
child 38
7ded3ec4c417
permissions
-rw-r--r--

added README

universe@37 1 cline
universe@37 2 _________________________________________
universe@37 3 Copyright (C) 2013 Mike Becker
universe@37 4
universe@37 5 Contents:
universe@37 6 1) About ................................................................... 11
universe@37 7 2) Contact Information ..................................................... 23
universe@37 8 3) License ................................................................. 29
universe@37 9
universe@37 10
universe@37 11 1) About ______________________________________________________________________
universe@37 12
universe@37 13 cline is a command line tool that counts code lines in your project folder. It
universe@37 14 is designed to recursively find any source file matching specific rules and
universe@37 15 count the line breaks within that file. You may specify file suffixes to include
universe@37 16 or exclude as well as regular expressions for code lines that shall be excluded
universe@37 17 (e.g. to exclude comments). By default a heuristic algorithm skips binary files.
universe@37 18 You may configure the restrictiveness of this algorithm with command line
universe@37 19 options.
universe@37 20
universe@37 21 Type cline --help for further information.
universe@37 22
universe@37 23 2) Contact Information ________________________________________________________
universe@37 24
universe@37 25 You can contact us by either one of the following mail addresses:
universe@37 26 universe@uap-core.de - Direct developer contact
universe@37 27 info@uap-core.de - Generic mail address
universe@37 28
universe@37 29 3) License ____________________________________________________________________
universe@37 30
universe@37 31 Copyright 2013 Mike Becker. All rights reserved.
universe@37 32
universe@37 33 Redistribution and use in source and binary forms, with or without
universe@37 34 modification, are permitted provided that the following conditions are met:
universe@37 35
universe@37 36 1. Redistributions of source code must retain the above copyright
universe@37 37 notice, this list of conditions and the following disclaimer.
universe@37 38
universe@37 39 2. Redistributions in binary form must reproduce the above copyright
universe@37 40 notice, this list of conditions and the following disclaimer in the
universe@37 41 documentation and/or other materials provided with the distribution.
universe@37 42
universe@37 43 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@37 44 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@37 45 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
universe@37 46 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
universe@37 47 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
universe@37 48 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
universe@37 49 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
universe@37 50 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
universe@37 51 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
universe@37 52 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
universe@37 53

mercurial