reviser 0.0.3.rc2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/LICENSE +674 -0
- data/config.yml +23 -7
- data/ext/valgrind.rb +25 -0
- data/ext/web_validators.rb +27 -17
- data/lang/C.yml +24 -1
- data/lang/HTML.yml +23 -1
- data/lang/Java.yml +24 -1
- data/lang/Ruby.yml +24 -1
- data/lib/exec.rb +23 -3
- data/lib/reviser.rb +27 -8
- data/lib/reviser/component.rb +23 -2
- data/lib/reviser/components/archiver.rb +21 -0
- data/lib/reviser/components/checker.rb +26 -5
- data/lib/reviser/components/extractors.rb +21 -0
- data/lib/reviser/components/generator.rb +21 -1
- data/lib/reviser/components/generators.rb +21 -0
- data/lib/reviser/components/organiser.rb +27 -5
- data/lib/reviser/config.rb +23 -2
- data/lib/reviser/criteria/code_analysis.rb +26 -2
- data/lib/reviser/criteria/compilation.rb +22 -1
- data/lib/reviser/criteria/execution.rb +23 -3
- data/lib/reviser/helpers/criteria.rb +24 -1
- data/lib/reviser/helpers/git.rb +22 -0
- data/lib/reviser/helpers/project.rb +25 -4
- data/lib/reviser/helpers/system.rb +25 -3
- data/lib/reviser/loggers/logger.rb +21 -0
- data/lib/reviser/loggers/modes.rb +21 -0
- data/lib/reviser/result.rb +22 -0
- metadata +5 -4
data/lib/reviser/result.rb
CHANGED
@@ -1,3 +1,25 @@
|
|
1
|
+
#
|
2
|
+
# Reviser => a semi-automatic tool for student's projects evaluation
|
3
|
+
#
|
4
|
+
# Copyright (C) 2015 Renan Strauss
|
5
|
+
# Copyright (C) 2015 Yann Prono
|
6
|
+
# Copyright (C) 2015 Romain Ruez
|
7
|
+
# Copyright (C) 2015 Anthony Cerf
|
8
|
+
#
|
9
|
+
# This program is free software: you can redistribute it and/or modify
|
10
|
+
# it under the terms of the GNU General Public License as published by
|
11
|
+
# the Free Software Foundation, either version 3 of the License, or
|
12
|
+
# (at your option) any later version.
|
13
|
+
#
|
14
|
+
# This program is distributed in the hope that it will be useful,
|
15
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
16
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
17
|
+
# GNU General Public License for more details.
|
18
|
+
#
|
19
|
+
# You should have received a copy of the GNU General Public License
|
20
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
21
|
+
#
|
22
|
+
|
1
23
|
#
|
2
24
|
# This class represents an analysis result
|
3
25
|
# It allows us to easily output well-formatted results for certain output formats
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: reviser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.3
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Renan Strauss
|
@@ -82,6 +82,7 @@ extra_rdoc_files: []
|
|
82
82
|
files:
|
83
83
|
- ".yardopts"
|
84
84
|
- Gemfile
|
85
|
+
- LICENSE
|
85
86
|
- README.md
|
86
87
|
- bin/reviser
|
87
88
|
- config.yml
|
@@ -133,7 +134,7 @@ files:
|
|
133
134
|
- type/example/Web.yml
|
134
135
|
homepage: http://rubygems.org/gems/reviser
|
135
136
|
licenses:
|
136
|
-
-
|
137
|
+
- GPLv3
|
137
138
|
metadata: {}
|
138
139
|
post_install_message:
|
139
140
|
rdoc_options: []
|
@@ -146,9 +147,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
146
147
|
version: 1.9.3
|
147
148
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
148
149
|
requirements:
|
149
|
-
- - "
|
150
|
+
- - ">="
|
150
151
|
- !ruby/object:Gem::Version
|
151
|
-
version:
|
152
|
+
version: '0'
|
152
153
|
requirements: []
|
153
154
|
rubyforge_project:
|
154
155
|
rubygems_version: 2.4.5
|