diff options
-rwxr-xr-x | rk.rb | 2 | ||||
-rwxr-xr-x | stats.rb | 2 | ||||
-rw-r--r-- | util.rb | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -67,7 +67,7 @@ def rk references, end def main - config = Trollop::options do + config = Optimist::options do opt :input, "File with hypotheses, truecased and tokenized", :type => :string, :short => "-i", :default => '-' opt :references, "File with references, truecased and tokenized", :type => :string, :short => "-r", :required => true opt :stopwords, "File with stopwords, one per line", :type => :string, :short => "-s", :required => true @@ -24,7 +24,7 @@ def stats references, stopwords end def main - config = Trollop::options do + config = Optimist::options do opt :references, "File with references, truecased and tokenized", :type => :string, :short => "-r", :required => true opt :stopwords, "File with stopwords, one per line", :type => :string, :short => "-s", :required => true end @@ -1,5 +1,5 @@ require 'zipf' -require 'trollop' +require 'optimist' def read_stopwords_file fn stopwords = {} |