sqm-dashboards/app/lib/rule/seed_only_lowell.rb
2022-12-03 10:23:02 -08:00

14 lines
219 B
Ruby

module Rule
class SeedOnlyLowell
attr_reader :row
def initialize(row:)
@row = row
end
def skip_row?
district = row['District'].strip.downcase
'lowell' != district
end
end
end