tasks/commit.sample.rake in schubert-minglr-1.2.0 vs tasks/commit.sample.rake in schubert-minglr-1.3.0
- old
+ new
@@ -62,19 +62,19 @@
else
Password.get "#{message}: "
end
else
print "#{message}"
- if cache = InputCache.get(options[:cache_key])
+ if cache = MTX::InputCache.get(options[:cache_key])
print " [#{cache}]"
end
print ": "
$stdin.gets.chop
end
if !options[:secure] && cache_key = options.delete(:cache_key)
- user_input = InputCache.get(cache_key) if user_input.blank?
- InputCache.put(cache_key, user_input)
+ user_input = MTX::InputCache.get(cache_key) if user_input.blank?
+ MTX::InputCache.put(cache_key, user_input)
end
user_input = escape(user_input)
end
\ No newline at end of file