Open ajsharp opened 11 years ago
Possible interfaces:
t1 = Time.new(2013, 7, 25)
t2 = Time.new(2013, 7, 24)
Balanced::Transaction.paginate(:before => t1, :after => t2)
Balanced::Transaction.paginate.before(t1).after(t2)
Balanced::Transaction.paginate.between(t1, t2)
Obviously, the last two options would require some type of scoping support in general.
You can do this manually already, it'd be great if the client made it a little easier: