class JpStringsFinder::ERBFinder

Attributes

src[R]

Public Class Methods

new(src) click to toggle source
# File lib/jp_strings_finder/erb_finder.rb, line 5
def initialize(src)
  @src = src
end

Public Instance Methods

find() click to toggle source

Very very rough implementation for the moment…

# File lib/jp_strings_finder/erb_finder.rb, line 10
def find
  src.split("\n")
end