15 lines
231 B
Ruby
Executable File
15 lines
231 B
Ruby
Executable File
# encoding: UTF-8
|
|
|
|
class WpItem
|
|
attr_reader :found_from
|
|
|
|
def found_from=(method)
|
|
found = method[%r{find_from_(.*)}, 1]
|
|
@found_from = found.gsub('_', ' ') if found
|
|
end
|
|
|
|
module Findable
|
|
|
|
end
|
|
end
|