lib/active_remote/dsl.rb in active_remote-1.4.0 vs lib/active_remote/dsl.rb in active_remote-1.4.1

- old
+ new

@@ -23,22 +23,9 @@ def attr_publishable(*attributes) @publishable_attributes ||= [] @publishable_attributes += attributes end - # Set the number of records per page when auto paging. - # - # ====Examples - # - # class User < ActiveRemote::Base - # auto_paging_size 100 - # end - # - def auto_paging_size(size=nil) - @auto_paging_size = size unless size.nil? - @auto_paging_size ||= 1000 - end - # Set the namespace for the underlying RPC service class. If no namespace # is given, then none will be used. # # ====Examples #