summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordmg <dmg@uvic.ca>2014-06-09 18:49:39 +0900
committerJNajjar <johannes.najjar@tngtech.com>2015-03-31 15:05:50 +0200
commit99bd3f4bed2e344b004fc3e02a10fd495864e4ae (patch)
treef0829749e6a65d1887a0f97a3095f826312b85b5
parent7d320a59a8acb6e5231c0d222e619137866f8762 (diff)
downloadninka-99bd3f4bed2e344b004fc3e02a10fd495864e4ae.tar.gz
forgot to upgrade version of ninka.pl
Conflicts: ninka.pl
-rw-r--r--README2
-rwxr-xr-xbin/ninka2
-rw-r--r--lib/Ninka.pm4
-rw-r--r--lib/Ninka/CommentExtractor.pm2
-rw-r--r--lib/Ninka/FileCleaner.pm2
-rw-r--r--lib/Ninka/LicenseMatcher.pm2
-rw-r--r--lib/Ninka/LicenseRules.pm2
-rw-r--r--lib/Ninka/SentenceFilter.pm2
-rw-r--r--lib/Ninka/SentenceTokenizer.pm2
9 files changed, 10 insertions, 10 deletions
diff --git a/README b/README
index 5559ea6..cc50b05 100644
--- a/README
+++ b/README
@@ -30,7 +30,7 @@ the above paper.
Except for the directories comments and splitter, Ninka is licensed
under the GPLv2+
- Copyright (C) 2009-2010 Yuki Manabe and Daniel M. German
+ Copyright (C) 2009-2014 Yuki Manabe and Daniel M. German
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as
diff --git a/bin/ninka b/bin/ninka
index 124791c..a09ba51 100755
--- a/bin/ninka
+++ b/bin/ninka
@@ -40,7 +40,7 @@ Scans a file and returns the found licenses.
=head1 COPYRIGHT AND LICENSE
-Copyright (C) 2009-2010 Yuki Manabe and Daniel M. German
+Copyright (C) 2009-2014 Yuki Manabe and Daniel M. German
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
diff --git a/lib/Ninka.pm b/lib/Ninka.pm
index 8e42a7b..9e1d51d 100644
--- a/lib/Ninka.pm
+++ b/lib/Ninka.pm
@@ -9,7 +9,7 @@ use Ninka::SentenceExtractor;
use Ninka::SentenceFilter;
use Ninka::SentenceTokenizer;
-our $VERSION = '1.01';
+our $VERSION = '1.2';
sub process_file {
my ($input_file, $verbose) = @_;
@@ -67,7 +67,7 @@ Scans a file and returns the found licenses.
=head1 COPYRIGHT AND LICENSE
- Copyright (C) 2009-2010 Yuki Manabe and Daniel M. German
+ Copyright (C) 2009-2014 Yuki Manabe and Daniel M. German
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as
diff --git a/lib/Ninka/CommentExtractor.pm b/lib/Ninka/CommentExtractor.pm
index 9a9abca..cd7e060 100644
--- a/lib/Ninka/CommentExtractor.pm
+++ b/lib/Ninka/CommentExtractor.pm
@@ -93,7 +93,7 @@ If no comment extractor is known for a language, then extracts top lines from so
=head1 COPYRIGHT AND LICENSE
- Copyright (C) 2009-2010 Yuki Manabe and Daniel M. German
+ Copyright (C) 2009-2014 Yuki Manabe and Daniel M. German
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as
diff --git a/lib/Ninka/FileCleaner.pm b/lib/Ninka/FileCleaner.pm
index ec42623..c3dd912 100644
--- a/lib/Ninka/FileCleaner.pm
+++ b/lib/Ninka/FileCleaner.pm
@@ -49,7 +49,7 @@ Escapes apostrophes and other potentially disturbing characters
=head1 COPYRIGHT AND LICENSE
- Copyright (C) 2009-2010 Yuki Manabe and Daniel M. German, 2015 Daniele Fognini and Johannes Najjar
+ Copyright (C) 2009-2014 Yuki Manabe and Daniel M. German, 2015 Daniele Fognini and Johannes Najjar
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as
diff --git a/lib/Ninka/LicenseMatcher.pm b/lib/Ninka/LicenseMatcher.pm
index 9ae8fc9..1cb402a 100644
--- a/lib/Ninka/LicenseMatcher.pm
+++ b/lib/Ninka/LicenseMatcher.pm
@@ -261,7 +261,7 @@ Uses a set of license sentence names as input and outputs license names correspo
=head1 COPYRIGHT AND LICENSE
- Copyright (C) 2009-2010 Yuki Manabe and Daniel M. German
+ Copyright (C) 2009-2014 Yuki Manabe and Daniel M. German
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as
diff --git a/lib/Ninka/LicenseRules.pm b/lib/Ninka/LicenseRules.pm
index 4dc9dff..c7810c8 100644
--- a/lib/Ninka/LicenseRules.pm
+++ b/lib/Ninka/LicenseRules.pm
@@ -96,7 +96,7 @@ Contains rules used by Ninka::LicenseMatcher.
=head1 COPYRIGHT AND LICENSE
- Copyright (C) 2009-2010 Yuki Manabe and Daniel M. German
+ Copyright (C) 2009-2014 Yuki Manabe and Daniel M. German
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as
diff --git a/lib/Ninka/SentenceFilter.pm b/lib/Ninka/SentenceFilter.pm
index 36d807c..4db0d97 100644
--- a/lib/Ninka/SentenceFilter.pm
+++ b/lib/Ninka/SentenceFilter.pm
@@ -84,7 +84,7 @@ A sentence including a critical word (ex. legal term) is regarded as good.
=head1 COPYRIGHT AND LICENSE
-Copyright (C) 2009-2010 Yuki Manabe and Daniel M. German
+Copyright (C) 2009-2014 Yuki Manabe and Daniel M. German
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as
diff --git a/lib/Ninka/SentenceTokenizer.pm b/lib/Ninka/SentenceTokenizer.pm
index 669204d..00923f2 100644
--- a/lib/Ninka/SentenceTokenizer.pm
+++ b/lib/Ninka/SentenceTokenizer.pm
@@ -227,7 +227,7 @@ For each sentence, it outputs its recognized sentence token, or unknown otherwis
=head1 COPYRIGHT AND LICENSE
-Copyright (C) 2009-2010 Yuki Manabe and Daniel M. German
+Copyright (C) 2009-2014 Yuki Manabe and Daniel M. German
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as