Stream 0.1.5 → 0.1.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/lib/stream/fires.rb +5 -1
  2. data/stream.gemspec +1 -1
  3. metadata +1 -1
data/lib/stream/fires.rb CHANGED
@@ -35,7 +35,11 @@ module Stream
35
35
 
36
36
  transaction do
37
37
  activity = ActivityItem.create!(create_options)
38
- ([activity.actor] + activity.actor.contacts).each{ |p| p.activity_items << activity }
38
+ if activity_type.to_s.eql?'new_message'
39
+ activity.subject.recipient.activity_items << activity
40
+ else
41
+ ([activity.actor] + activity.actor.contacts).each{ |p| p.activity_items << activity }
42
+ end
39
43
  end
40
44
  end
41
45
 
data/stream.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{Stream}
5
- s.version = "0.1.5"
5
+ s.version = "0.1.6"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Gretchen Gapol"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: Stream
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: