From 8151031373c08ccd714a99f50783eafcb54d2010 Mon Sep 17 00:00:00 2001 From: Patrick Simianer
Date: Wed, 10 Jun 2015 14:48:34 +0200 Subject: undo unfortunate variable naming: cfg -> conf! --- ng | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ng') diff --git a/ng b/ng index 0a29898..7a3552f 100755 --- a/ng +++ b/ng @@ -3,7 +3,7 @@ require 'zipf' require 'trollop' -cfg = Trollop::options do +conf = Trollop::options do banner "ng < " opt :n, "n for Ngrams", :type => :int, :default => 4 opt :fix, "Don't output lower order Ngrams.", :type => :bool, :default => false @@ -12,8 +12,8 @@ end while line = STDIN.gets a = [] - ngrams(line, cfg[:n], cfg[:fix]) { |ng| a << ng.join(' ') } + ngrams(line, conf[:n], conf[:fix]) { |ng| a << ng.join(' ') } a.reject! { |i| i.strip.size==0 } - puts a.join cfg[:separator] if a.size>0 + puts a.join conf[:separator] if a.size>0 end -- cgit v1.2.3