OSDN Git Service

separate manifest
[pettanr/pettanr.git] / lib / local_manifest / list_group / list / through_filter.rb
1 module LocalManifest
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 = @args['through']
14         end
15         
16       end
17       
18     end
19   end
20 end