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 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.select("DISTINCT actors.*").
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]
@@ -1,5 +1,5 @@
1
1
  module SocialStream
2
2
  module Base
3
- VERSION = "0.9.31".freeze
3
+ VERSION = "0.9.32".freeze
4
4
  end
5
5
  end
@@ -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: 5
4
+ hash: 123
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 9
9
- - 31
10
- version: 0.9.31
9
+ - 32
10
+ version: 0.9.32
11
11
  platform: ruby
12
12
  authors:
13
13
  - GING - DIT - UPM