social_stream 0.12.10 → 0.12.11
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/base/app/models/actor.rb
CHANGED
|
@@ -206,7 +206,9 @@ 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.select('actors.*').
|
|
210
|
+
# PostgreSQL requires that all the columns must be included in the GROUP BY
|
|
211
|
+
group((Actor.columns.map(&:name).map{ |c| "actors.#{ c }" } + [ "contacts.created_at" ]).join(", ")).
|
|
210
212
|
where('actors.subject_type' => subject_classes)
|
|
211
213
|
|
|
212
214
|
if options[:load_subjects].nil? || options[:load_subjects]
|
|
@@ -14,7 +14,8 @@ describe HomeController do
|
|
|
14
14
|
|
|
15
15
|
describe "when authenticated" do
|
|
16
16
|
before do
|
|
17
|
-
|
|
17
|
+
@user = Factory(:user)
|
|
18
|
+
sign_in @user
|
|
18
19
|
end
|
|
19
20
|
|
|
20
21
|
it "should render" do
|
|
@@ -24,6 +25,20 @@ describe HomeController do
|
|
|
24
25
|
response.body.should =~ /activities_share_btn/
|
|
25
26
|
end
|
|
26
27
|
|
|
28
|
+
context "with a group" do
|
|
29
|
+
before do
|
|
30
|
+
Factory(:friend,
|
|
31
|
+
:contact => Factory(:g2g_contact, :sender => @user.actor))
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
it "should render" do
|
|
35
|
+
get :index
|
|
36
|
+
|
|
37
|
+
response.should be_success
|
|
38
|
+
response.body.should =~ /activities_share_btn/
|
|
39
|
+
end
|
|
40
|
+
end
|
|
41
|
+
|
|
27
42
|
describe "when representing" do
|
|
28
43
|
before do
|
|
29
44
|
@represented = represent(Factory(:group))
|
data/social_stream.gemspec
CHANGED
|
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
|
|
|
11
11
|
s.files = `git ls-files`.split("\n")
|
|
12
12
|
|
|
13
13
|
# Gem dependencies
|
|
14
|
-
s.add_runtime_dependency('social_stream-base', '~> 0.9.
|
|
14
|
+
s.add_runtime_dependency('social_stream-base', '~> 0.9.33')
|
|
15
15
|
s.add_runtime_dependency('social_stream-documents', '~> 0.4.5')
|
|
16
16
|
s.add_runtime_dependency('social_stream-events', '~> 0.0.20')
|
|
17
17
|
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: social_stream
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 57
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 12
|
|
9
|
-
-
|
|
10
|
-
version: 0.12.
|
|
9
|
+
- 11
|
|
10
|
+
version: 0.12.11
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- GING - DIT - UPM
|
|
@@ -27,12 +27,12 @@ dependencies:
|
|
|
27
27
|
requirements:
|
|
28
28
|
- - ~>
|
|
29
29
|
- !ruby/object:Gem::Version
|
|
30
|
-
hash:
|
|
30
|
+
hash: 121
|
|
31
31
|
segments:
|
|
32
32
|
- 0
|
|
33
33
|
- 9
|
|
34
|
-
-
|
|
35
|
-
version: 0.9.
|
|
34
|
+
- 33
|
|
35
|
+
version: 0.9.33
|
|
36
36
|
type: :runtime
|
|
37
37
|
version_requirements: *id001
|
|
38
38
|
- !ruby/object:Gem::Dependency
|