social_stream-base 0.9.31 → 0.9.32
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.
- data/app/models/actor.rb +1 -1
- data/lib/social_stream/base/version.rb +1 -1
- data/spec/models/user_spec.rb +16 -0
- metadata +3 -3
data/app/models/actor.rb
CHANGED
|
@@ -206,7 +206,7 @@ class Actor < ActiveRecord::Base
|
|
|
206
206
|
subject_types = Array(options[:type] || self.class.subtypes)
|
|
207
207
|
subject_classes = subject_types.map{ |s| s.to_s.classify }
|
|
208
208
|
|
|
209
|
-
as = Actor.
|
|
209
|
+
as = Actor.group(:id).
|
|
210
210
|
where('actors.subject_type' => subject_classes)
|
|
211
211
|
|
|
212
212
|
if options[:load_subjects].nil? || options[:load_subjects]
|
data/spec/models/user_spec.rb
CHANGED
|
@@ -29,6 +29,22 @@ describe User do
|
|
|
29
29
|
it "should represent" do
|
|
30
30
|
@user.represented.should include(@group)
|
|
31
31
|
end
|
|
32
|
+
|
|
33
|
+
context "and a second group" do
|
|
34
|
+
before do
|
|
35
|
+
@second_group =
|
|
36
|
+
Factory(:member,
|
|
37
|
+
:contact => Factory(:group_contact,
|
|
38
|
+
:receiver => @user.actor)
|
|
39
|
+
).sender_subject
|
|
40
|
+
Factory(:friend, :contact => @user.contact_to!(@second_group))
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
it "should represent both groups" do
|
|
44
|
+
@user.represented.should include(@group)
|
|
45
|
+
@user.represented.should include(@second_group)
|
|
46
|
+
end
|
|
47
|
+
end
|
|
32
48
|
end
|
|
33
49
|
end
|
|
34
50
|
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: social_stream-base
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 123
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 9
|
|
9
|
-
-
|
|
10
|
-
version: 0.9.
|
|
9
|
+
- 32
|
|
10
|
+
version: 0.9.32
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- GING - DIT - UPM
|