mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-13 09:20:38 -07:00
16 lines
277 B
Ruby
16 lines
277 B
Ruby
module Rule
|
|
class SkipNonLowellSchools
|
|
attr_reader :row
|
|
|
|
def initialize(row:)
|
|
@row = row
|
|
end
|
|
|
|
def skip_row?
|
|
return true if row.school.nil?
|
|
return true if row.school.district.nil?
|
|
|
|
row.school.district.name != 'Lowell'
|
|
end
|
|
end
|
|
end
|