medea 0.6.8 → 0.6.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -82,7 +82,7 @@ module Medea
|
|
82
82
|
end
|
83
83
|
|
84
84
|
def remove! member, cascade=false
|
85
|
-
raise RuntimeError, "You can only remove an item if you are accessing this list from an object." unless @parent.is_a? JasonObject
|
85
|
+
raise RuntimeError, "You can only remove an item if you are accessing this list from an object (ie, not another list)." unless @parent.is_a? JasonObject
|
86
86
|
raise ArgumentError, "You can only remove #{@type.name} items from this collection!" unless member.is_a? @type
|
87
87
|
raise ArgumentError, "This item (#{member.jason_key}) doesn't exist in the list you're trying to remove it from!" unless self.include? member
|
88
88
|
|
data/lib/medea/jasonobject.rb
CHANGED
@@ -24,8 +24,9 @@ module Medea
|
|
24
24
|
#create a JasonDeferredQuery for all records of this class & with some optional conditions
|
25
25
|
def JasonObject.all(opts=nil)
|
26
26
|
q = JasonDeferredQuery.new :class => self, :filters => {:VERSION0 => nil, :FILTER => {:HTTP_X_CLASS => self, :HTTP_X_ACTION => :POST}}
|
27
|
-
if opts
|
28
|
-
q.limit = opts[:limit]
|
27
|
+
if opts
|
28
|
+
q.limit = opts[:limit] if opts[:limit]
|
29
|
+
q.since = opts[:since] if opts[:since]
|
29
30
|
end
|
30
31
|
|
31
32
|
q
|
data/lib/medea/version.rb
CHANGED
data/spec/deferred_query_spec.rb
CHANGED
@@ -26,13 +26,18 @@ describe "Deferred Query" do
|
|
26
26
|
it "should be able to be limited to a certain number of results" do
|
27
27
|
u = User.all
|
28
28
|
u.limit = 5
|
29
|
-
u.count.should be
|
29
|
+
u.count.should be == 5
|
30
30
|
|
31
31
|
u = User.all :limit => 4
|
32
|
-
u.count.should be
|
32
|
+
u.count.should be == 4
|
33
33
|
end
|
34
34
|
|
35
|
-
it "should be able to fetch those since a particular time"
|
35
|
+
it "should be able to fetch those since a particular time" do
|
36
|
+
u = User.all[10]
|
37
|
+
User.all(:since => u.jason_timestamp).each do |i|
|
38
|
+
i.jason_timestamp.should be >= u.jason_timestamp
|
39
|
+
end
|
40
|
+
end
|
36
41
|
|
37
42
|
it "should return the last element" do
|
38
43
|
u = User.all
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: medea
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.6.
|
5
|
+
version: 0.6.9
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Michael Jensen
|
@@ -10,7 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2011-02-
|
13
|
+
date: 2011-02-24 00:00:00 +11:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|