adlint-exam-c_staging 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/AUTHORS +27 -0
- data/COPYING +674 -0
- data/ChangeLog +33 -0
- data/INSTALL +98 -0
- data/MANIFEST +17 -0
- data/NEWS +30 -0
- data/README +60 -0
- data/Rakefile +109 -0
- data/TODO +26 -0
- data/etc/mesg.d/c_staging/en_US/messages.yml +52 -0
- data/etc/mesg.d/c_staging/ja_JP/messages.yml +52 -0
- data/features/code_check/W2001.feature +25 -0
- data/features/code_check/W2002.feature +33 -0
- data/features/step_definitions/code_check_steps.rb +18 -0
- data/features/support/env.rb +182 -0
- data/lib/adlint/exam/c_staging/cpp_check.rb +78 -0
- data/lib/adlint/exam/c_staging.rb +56 -0
- metadata +85 -0
data/AUTHORS
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
--
|
2
|
+
___ ____ __ ___ _________
|
3
|
+
/ | / _ |/ / / / | / /__ __/ Source Code Static Analyzer
|
4
|
+
/ /| | / / / / / / / |/ / / / AdLint - Advanced Lint
|
5
|
+
/ __ |/ /_/ / /___/ / /| / / /
|
6
|
+
/_/ |_|_____/_____/_/_/ |_/ /_/ Copyright (C) 2010-2012, OGIS-RI Co.,Ltd.
|
7
|
+
|
8
|
+
This file is part of AdLint.
|
9
|
+
|
10
|
+
AdLint is free software: you can redistribute it and/or modify it under the
|
11
|
+
terms of the GNU General Public License as published by the Free Software
|
12
|
+
Foundation, either version 3 of the License, or (at your option) any later
|
13
|
+
version.
|
14
|
+
|
15
|
+
AdLint is distributed in the hope that it will be useful, but WITHOUT ANY
|
16
|
+
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
17
|
+
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
18
|
+
|
19
|
+
You should have received a copy of the GNU General Public License along with
|
20
|
+
AdLint. If not, see <http://www.gnu.org/licenses/>.
|
21
|
+
|
22
|
+
++
|
23
|
+
|
24
|
+
=== Authors
|
25
|
+
|
26
|
+
* Yutaka Yanoh <mailto:yanoh@users.sourceforge.net>
|
27
|
+
* Rie Shima <mailto:rkakuuchi@users.sourceforge.net>
|