class FilterRename::Filters::MoveWordTo
Public Class Methods
hint()
click to toggle source
# File lib/filter_rename/filters.rb, line 343 def self.hint; 'Move the NTH word to TARGET'; end
params()
click to toggle source
# File lib/filter_rename/filters.rb, line 344 def self.params; 'NTH,TARGET'; end
Public Instance Methods
filtered_word(word, params, param_num)
click to toggle source
# File lib/filter_rename/filters.rb, line 346 def filtered_word(word, params, param_num) set_string(word, params[1]) nil end