activity_stream 0.0.3 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/Readme.md CHANGED
@@ -37,7 +37,7 @@ In your User model:
37
37
 
38
38
  include ActivityStream::Actor
39
39
 
40
- def activity_stream_actors
40
+ def followed_actors
41
41
  [[User, 13], [User, 14], [Page, 9]]
42
42
  end
43
43
 
@@ -53,7 +53,7 @@ In your dashboard controller:
53
53
 
54
54
  When you want to create an activity:
55
55
 
56
- current_user.create_activity(:example_action,
56
+ current_user.publish_activity(:example_action,
57
57
  :target => @friend,
58
58
  :referrer => @referrer)
59
59
 
@@ -1,3 +1,3 @@
1
1
  module ActivityStream
2
- VERSION = "0.0.3"
2
+ VERSION = "0.1.0"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activity_stream
3
3
  version: !ruby/object:Gem::Version
4
- hash: 25
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
+ - 1
8
9
  - 0
9
- - 3
10
- version: 0.0.3
10
+ version: 0.1.0
11
11
  platform: ruby
12
12
  authors:
13
13
  - Andrew Smith
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2010-11-06 00:00:00 -04:00
18
+ date: 2010-11-08 00:00:00 -05:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -81,7 +81,6 @@ files:
81
81
  - Rakefile
82
82
  - Readme.md
83
83
  - activity_stream.gemspec
84
- - app/models/activity_stream/activity.rb
85
84
  - generators/activity_stream/activity_stream_generator.rb
86
85
  - generators/activity_stream/lib/insert_commands.rb
87
86
  - generators/activity_stream/templates/initializer.rb
@@ -89,6 +88,7 @@ files:
89
88
  - generators/activity_stream/templates/user.rb
90
89
  - lib/activity_stream.rb
91
90
  - lib/activity_stream/activities_helper.rb
91
+ - lib/activity_stream/activity.rb
92
92
  - lib/activity_stream/actor.rb
93
93
  - lib/activity_stream/definition.rb
94
94
  - lib/activity_stream/definition_proxy.rb