social_stream 0.13.2 → 0.13.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -3,7 +3,7 @@ class GroupsController < InheritedResources::Base
3
3
 
4
4
  # Set group founder to current_subject
5
5
  # Must do before authorization
6
- before_filter :set_founder, :only => :new
6
+ before_filter :set_founder, :only => [ :new, :create ]
7
7
 
8
8
  load_and_authorize_resource
9
9
 
@@ -162,6 +162,8 @@ class Actor < ActiveRecord::Base
162
162
  receivers = group.contact_actors(:direction => :sent, :relations => relation)
163
163
  emails = Array.new
164
164
  receivers.each do |receiver|
165
+ next unless Actor.normalize(receiver).subject_type.eql?("User")
166
+
165
167
  receiver_emails = receiver.mailboxer_email(object)
166
168
  case receiver_emails
167
169
  when String
@@ -1,5 +1,5 @@
1
1
  module SocialStream
2
2
  module Base
3
- VERSION = "0.10.2".freeze
3
+ VERSION = "0.10.3".freeze
4
4
  end
5
5
  end
@@ -11,15 +11,21 @@ module SocialStream
11
11
  load_and_authorize_resource :except => :index
12
12
 
13
13
  respond_to :html, :js
14
- end
15
14
 
16
- module InstanceMethods
15
+ # destroy method must be before the one provided by inherited_resources
16
+ include SocialStream::Controllers::Objects::UpperInstanceMethods
17
+ end
17
18
 
19
+ # Methods that should be included after the included block
20
+ module UpperInstanceMethods
18
21
  def destroy
19
22
  @post_activity = resource.post_activity
20
23
 
21
24
  destroy!
22
25
  end
26
+ end
27
+
28
+ module InstanceMethods
23
29
 
24
30
  protected
25
31
 
@@ -1,6 +1,7 @@
1
1
  require 'spec_helper'
2
2
 
3
3
  describe GroupsController do
4
+ include SocialStream::TestHelpers
4
5
  include SocialStream::TestHelpers::Controllers
5
6
 
6
7
  render_views
@@ -76,14 +77,9 @@ describe GroupsController do
76
77
  end
77
78
 
78
79
  context "a new own group" do
79
- before do
80
- model_attributes[:author_id] = @user.actor_id
81
- model_attributes[:user_author_id] = @user.actor_id
82
- end
83
-
84
80
  it "should allow creating" do
85
81
  count = Group.count
86
- post :create, attributes
82
+ post :create, :group => { :name => "Test" }
87
83
 
88
84
  group = assigns(:group)
89
85
 
@@ -97,13 +93,13 @@ describe GroupsController do
97
93
  before do
98
94
  @user_participant = Factory(:user)
99
95
  @group_participant = Factory(:group)
100
-
101
- model_attributes[:_participants] = [@user_participant.actor_id, @group_participant.actor_id]
102
96
  end
103
97
 
104
98
  it "should allow creating" do
105
99
  count = Group.count
106
- post :create, attributes
100
+ post :create,
101
+ :group => { :name => "Test group",
102
+ :_participants => [ @user_participant.actor_id, @group_participant.actor_id ] }
107
103
 
108
104
  group = assigns(:group)
109
105
 
@@ -119,7 +115,7 @@ describe GroupsController do
119
115
  group.contact_subjects(:direction => :received)
120
116
  response.should redirect_to(:home)
121
117
  end
122
- end
118
+ end
123
119
  end
124
120
 
125
121
  context "a new fake group" do
@@ -158,6 +154,25 @@ describe GroupsController do
158
154
  # it_should_behave_like "Allow Updating"
159
155
  it_should_behave_like "Allow Destroying"
160
156
  end
157
+
158
+ context "representing a group" do
159
+ before do
160
+ @group = Factory(:member, :contact => Factory(:group_contact, :receiver => @user.actor)).sender_subject
161
+ represent(@group)
162
+ end
163
+
164
+ it "should allow creating" do
165
+ count = Group.count
166
+ post :create, :group => { :name => "Test" }
167
+
168
+ group = assigns(:group)
169
+
170
+ group.should be_valid
171
+ Group.count.should eq(count + 1)
172
+ assigns(:current_subject).should eq(group)
173
+ response.should redirect_to(:home)
174
+ end
175
+ end
161
176
  end
162
177
  end
163
178
 
@@ -26,6 +26,15 @@ describe PostsController do
26
26
 
27
27
  it_should_behave_like "Allow Creating"
28
28
  it_should_behave_like "Allow Destroying"
29
+
30
+ it "should destroy with js" do
31
+ count = model_count
32
+ delete :destroy, :id => @current_model.to_param, :format => :js
33
+
34
+ resource = assigns(model_sym)
35
+
36
+ model_count.should eq(count - 1)
37
+ end
29
38
  end
30
39
 
31
40
  describe "with last relation" do
@@ -11,7 +11,7 @@ class Document < ActiveRecord::Base
11
11
  validates_presence_of :title
12
12
 
13
13
  before_validation(:on => :create) do
14
- set_title_and_description
14
+ set_title
15
15
  end
16
16
 
17
17
  define_index do
@@ -71,7 +71,7 @@ class Document < ActiveRecord::Base
71
71
 
72
72
  protected
73
73
 
74
- def set_title_and_description
74
+ def set_title
75
75
  self.title = self.file_file_name
76
76
  end
77
77
 
@@ -1,3 +1,3 @@
1
1
  module SocialStream
2
- VERSION = "0.13.2".freeze
2
+ VERSION = "0.13.3".freeze
3
3
  end
@@ -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.10.2')
14
+ s.add_runtime_dependency('social_stream-base', '~> 0.10.3')
15
15
  s.add_runtime_dependency('social_stream-documents', '~> 0.5.0')
16
16
  s.add_runtime_dependency('social_stream-events', '~> 0.1.0')
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: 47
4
+ hash: 45
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 13
9
- - 2
10
- version: 0.13.2
9
+ - 3
10
+ version: 0.13.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - GING - DIT - UPM
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2011-12-01 00:00:00 +01:00
19
+ date: 2011-12-02 00:00:00 +01:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
@@ -27,12 +27,12 @@ dependencies:
27
27
  requirements:
28
28
  - - ~>
29
29
  - !ruby/object:Gem::Version
30
- hash: 51
30
+ hash: 49
31
31
  segments:
32
32
  - 0
33
33
  - 10
34
- - 2
35
- version: 0.10.2
34
+ - 3
35
+ version: 0.10.3
36
36
  type: :runtime
37
37
  version_requirements: *id001
38
38
  - !ruby/object:Gem::Dependency