mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-09 07:28:41 -07:00
14 lines
219 B
Ruby
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
|