Skip to content

Commit

Permalink
Merge branch 'master', remote branch 'remotes/git-svn'
Browse files Browse the repository at this point in the history
  • Loading branch information
vikasnkumar committed Jun 15, 2011
2 parents be94c19 + afb2834 commit 7e14f13
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ SYNOPSIS
NLP::Service is a RESTful web service based off Dancer to provide
natural language parsing for English.

VERSION
0.02

METHODS
run()
The "run()" function starts up the NLP::Service, and listens to
Expand Down
6 changes: 5 additions & 1 deletion lib/NLP/Service.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Carp ();
BEGIN {
use Exporter();
our @ISA = qw(Exporter);
our $VERSION = '0.01';
our $VERSION = '0.02';
use NLP::StanfordParser;
}

Expand Down Expand Up @@ -163,6 +163,10 @@ NLP::Service
NLP::Service is a RESTful web service based off Dancer to provide natural language parsing for English.
=head1 VERSION
0.02
=head1 METHODS
=over
Expand Down
6 changes: 5 additions & 1 deletion lib/NLP/StanfordParser.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Carp ();
BEGIN {
use Exporter();
our @ISA = qw(Exporter);
our $VERSION = '0.01';
our $VERSION = '0.02';

# extract the path from the Package
my $package = __PACKAGE__ . '.pm';
Expand Down Expand Up @@ -151,6 +151,10 @@ NLP::StanfordParser
NLP::StanfordParser is a Java wrapper around Stanford's NLP libraries and data
files.
=head1 VERSION
0.02
=head1 EXPORTED CONSTANTS
=over
Expand Down

0 comments on commit 7e14f13

Please sign in to comment.