lib/ProMotion/table/grouped_table.rb in ProMotion-1.0.4 vs lib/ProMotion/table/grouped_table.rb in ProMotion-1.1.0.rc1
- old
+ new
@@ -1,7 +1,12 @@
module ProMotion
module GroupedTable
- def table_style
- UITableViewStyleGrouped
+ module GroupedTableClassMethods
+ def table_style
+ UITableViewStyleGrouped
+ end
+ end
+ def self.included(base)
+ base.extend(GroupedTableClassMethods)
end
end
end