OSDN Git Service

e216b7d95129cef35557a0001fb9140f6d558035
[pettanr/pettanr.git] / lib / manifest / list_group / list / through_filter.rb
1 module Manifest
2   module ListGroupModule
3     module ListModule
4       class ThroughFilterList < FilterList
5         attr :through
6         
7         def set_default
8           super
9         end
10         
11         def init
12           super
13           @through = @list_manifest['through']
14         end
15         
16       end
17       
18     end
19   end
20 end