social_stream 0.4.4 → 0.4.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (224) hide show
  1. data/.gitignore +1 -0
  2. data/Gemfile +5 -1
  3. data/README.rdoc +2 -2
  4. data/app/controllers/api_controller.rb +2 -1
  5. data/app/controllers/contacts_controller.rb +25 -2
  6. data/app/controllers/groups_controller.rb +12 -2
  7. data/app/controllers/notifications_controller.rb +72 -0
  8. data/app/controllers/permissions_controller.rb +10 -0
  9. data/app/controllers/relation/customs_controller.rb +8 -0
  10. data/app/controllers/spheres_controller.rb +12 -0
  11. data/app/helpers/contacts_helper.rb +24 -0
  12. data/app/helpers/location_helper.rb +26 -12
  13. data/app/helpers/notifications_helper.rb +23 -0
  14. data/app/helpers/permissions_helper.rb +16 -0
  15. data/app/helpers/profiles_helper.rb +31 -0
  16. data/app/helpers/subjects_helper.rb +0 -83
  17. data/app/helpers/toolbar_helper.rb +83 -0
  18. data/app/models/activity.rb +43 -36
  19. data/app/models/actor.rb +71 -14
  20. data/app/models/contact.rb +121 -0
  21. data/app/models/group.rb +3 -3
  22. data/app/models/permission.rb +33 -2
  23. data/app/models/relation.rb +1 -1
  24. data/app/models/relation/custom.rb +12 -1
  25. data/app/models/relation/public.rb +1 -1
  26. data/app/models/sphere.rb +3 -1
  27. data/app/models/tie.rb +35 -18
  28. data/app/views/activities/_walls.html.erb +2 -2
  29. data/app/views/api/activity_atom_feed.atom.builder +38 -38
  30. data/app/views/avatars/index.html.erb +12 -40
  31. data/app/views/comments/_new.html.erb +9 -8
  32. data/app/views/contacts/_contact.html.erb +20 -0
  33. data/app/views/contacts/_edit.html.erb +76 -0
  34. data/app/views/contacts/_form.html.erb +72 -0
  35. data/app/views/contacts/_index.html.erb +1 -1
  36. data/app/views/{ties → contacts}/_pendings.html.erb +3 -3
  37. data/app/views/{ties → contacts}/_suggestions.html.erb +5 -5
  38. data/app/views/contacts/_suggestions_and_pendings.html.erb +6 -0
  39. data/app/views/contacts/edit.html.erb +5 -0
  40. data/app/views/contacts/index.html.erb +1 -1
  41. data/app/views/contacts/new.html.erb +5 -0
  42. data/app/views/conversations/_conversation.html.erb +1 -1
  43. data/app/views/conversations/_index.html.erb +0 -5
  44. data/app/views/conversations/_show.html.erb +1 -2
  45. data/app/views/conversations/index.html.erb +4 -0
  46. data/app/views/conversations/index.js.erb +1 -0
  47. data/app/views/frontpage/index.html.erb +2 -3
  48. data/app/views/groups/_index.html.erb +5 -1
  49. data/app/views/groups/_new.html.erb +4 -3
  50. data/app/views/groups/_sidebar_index.html.erb +3 -10
  51. data/app/views/groups/_sidebar_show.html.erb +1 -9
  52. data/app/views/groups/index.html.erb +6 -8
  53. data/app/views/groups/show.html.erb +11 -4
  54. data/app/views/home/_sidebar.html.erb +1 -15
  55. data/app/views/home/index.html.erb +3 -2
  56. data/app/views/layouts/_account.html.erb +1 -1
  57. data/app/views/layouts/_flash.html.erb +5 -0
  58. data/app/views/layouts/_footer.html.erb +5 -4
  59. data/app/views/layouts/_representation.html.erb +5 -12
  60. data/app/views/layouts/application.html.erb +23 -20
  61. data/app/views/layouts/frontpage.html.erb +22 -10
  62. data/app/views/location/_location.html.erb +1 -1
  63. data/app/views/messages/_new.html.erb +0 -2
  64. data/app/views/notification_mailer/new_notification_email.html.erb +21 -0
  65. data/app/views/notification_mailer/new_notification_email.text.erb +11 -0
  66. data/app/views/notifications/_index.html.erb +21 -0
  67. data/app/views/notifications/_notification.html.erb +47 -0
  68. data/app/views/notifications/_show.html.erb +3 -0
  69. data/app/views/notifications/activities/_follow_body.html.erb +2 -0
  70. data/app/views/notifications/activities/_follow_subject.html.erb +2 -0
  71. data/app/views/notifications/activities/_like_body.html.erb +5 -0
  72. data/app/views/notifications/activities/_like_object_body.html.erb +2 -0
  73. data/app/views/notifications/activities/_like_object_subject.html.erb +2 -0
  74. data/app/views/notifications/activities/_like_subject.html.erb +5 -0
  75. data/app/views/notifications/activities/_like_subject_body.html.erb +1 -0
  76. data/app/views/notifications/activities/_like_subject_subject.html.erb +2 -0
  77. data/app/views/notifications/activities/_make-friend_body.html.erb +3 -0
  78. data/app/views/notifications/activities/_make-friend_subject.html.erb +2 -0
  79. data/app/views/notifications/activities/_post_body.html.erb +2 -0
  80. data/app/views/notifications/activities/_post_subject.html.erb +1 -0
  81. data/app/views/notifications/activities/_update_body.html.erb +1 -0
  82. data/app/views/notifications/activities/_update_subject.html.erb +1 -0
  83. data/app/views/notifications/index.html.erb +19 -0
  84. data/app/views/notifications/index.js.erb +8 -0
  85. data/app/views/notifications/show.html.erb +5 -0
  86. data/app/views/permissions/_index.html.erb +39 -0
  87. data/app/views/permissions/index.js.erb +10 -0
  88. data/app/views/profiles/_contact.html.erb +81 -0
  89. data/app/views/profiles/_experience.html.erb +22 -0
  90. data/app/views/profiles/_personal.html.erb +74 -0
  91. data/app/views/profiles/_profile.html.erb +12 -181
  92. data/app/views/profiles/_tags.html.erb +22 -0
  93. data/app/views/profiles/edit.html.erb +0 -14
  94. data/app/views/profiles/show.html.erb +14 -0
  95. data/app/views/profiles/update.js.erb +2 -28
  96. data/app/views/relation/customs/_form.html.erb +29 -0
  97. data/app/views/relation/customs/_index.html.erb +30 -0
  98. data/app/views/relation/customs/_list.html.erb +36 -0
  99. data/app/views/relation/customs/create.js.erb +20 -0
  100. data/app/views/relation/customs/index.js.erb +2 -0
  101. data/app/views/relation/customs/update.js.erb +6 -0
  102. data/app/views/spheres/_form.html.erb +28 -0
  103. data/app/views/spheres/_jquery.erb +130 -0
  104. data/app/views/spheres/_list.html.erb +19 -0
  105. data/app/views/spheres/create.js.erb +20 -0
  106. data/app/views/spheres/index.html.erb +74 -0
  107. data/app/views/ties/_edit.html.erb +1 -33
  108. data/app/views/toolbar/_home.html.erb +9 -0
  109. data/app/views/{subjects/_toolbar_home_menu.html.erb → toolbar/_home_menu.html.erb} +1 -1
  110. data/app/views/{subjects/_toolbar_home_menu_options.html.erb → toolbar/_home_menu_options.html.erb} +7 -3
  111. data/app/views/{subjects/_toolbar_home_menu_options_subjects.html.erb → toolbar/_home_menu_options_subjects.html.erb} +0 -0
  112. data/app/views/{subjects/_toolbar_logo.html.erb → toolbar/_logo.html.erb} +1 -1
  113. data/app/views/{subjects/_toolbar_message_menu.html.erb → toolbar/_message_menu.html.erb} +0 -0
  114. data/app/views/toolbar/_notifications_menu.html.erb +3 -0
  115. data/app/views/{subjects/_toolbar_profile.html.erb → toolbar/_profile.html.erb} +2 -2
  116. data/app/views/toolbar/_profile_menu.html.erb +15 -0
  117. data/app/views/toolbar/_profile_menu_basic_options.html.erb +5 -0
  118. data/app/views/toolbar/_profile_menu_tie_options.html.erb +35 -0
  119. data/app/views/users/_index.html.erb +1 -1
  120. data/app/views/users/_sidebar_index.html.erb +1 -6
  121. data/app/views/users/index.html.erb +3 -3
  122. data/app/views/users/show.html.erb +12 -2
  123. data/config/locales/en.yml +106 -79
  124. data/config/routes.rb +19 -5
  125. data/lib/generators/social_stream/templates/initializer.rb +2 -2
  126. data/lib/generators/social_stream/templates/migration.rb +3 -1
  127. data/lib/generators/social_stream/templates/public/images/HTML5.png +0 -0
  128. data/lib/generators/social_stream/templates/public/images/HTML5_Semantics.png +0 -0
  129. data/lib/generators/social_stream/templates/public/images/HTML5_Styling.png +0 -0
  130. data/lib/generators/social_stream/templates/public/images/Jcrop.gif +0 -0
  131. data/lib/generators/social_stream/templates/public/images/btn/btn_notification.png +0 -0
  132. data/lib/generators/social_stream/templates/public/images/btn/btn_notification_delete.png +0 -0
  133. data/lib/generators/social_stream/templates/public/images/btn/error.png +0 -0
  134. data/lib/generators/social_stream/templates/public/images/btn/info.png +0 -0
  135. data/lib/generators/social_stream/templates/public/images/btn/success.png +0 -0
  136. data/lib/generators/social_stream/templates/public/images/btn/warning.png +0 -0
  137. data/lib/generators/social_stream/templates/public/images/cancel.png +0 -0
  138. data/lib/generators/social_stream/templates/public/images/html5-badge-h-css3-semantics.png +0 -0
  139. data/lib/generators/social_stream/templates/public/images/icon_checkbox.png +0 -0
  140. data/lib/generators/social_stream/templates/public/images/logos/actor/remote_subject.png +0 -0
  141. data/lib/generators/social_stream/templates/public/images/logos/actor/remote_user.png +0 -0
  142. data/lib/generators/social_stream/templates/public/images/logos/representation/group.png +0 -0
  143. data/lib/generators/social_stream/templates/public/images/logos/representation/user.png +0 -0
  144. data/lib/generators/social_stream/templates/public/images/pbar-ani.gif +0 -0
  145. data/lib/generators/social_stream/templates/public/javascripts/jquery.fileupload-ui.js +259 -0
  146. data/lib/generators/social_stream/templates/public/javascripts/jquery.fileupload.js +475 -0
  147. data/lib/generators/social_stream/templates/public/javascripts/jquery.form.js +815 -0
  148. data/lib/generators/social_stream/templates/public/javascripts/jquery.ui.mouse.js +156 -0
  149. data/lib/generators/social_stream/templates/public/javascripts/jquery.ui.slider.js +684 -0
  150. data/lib/generators/social_stream/templates/public/javascripts/jquery.ui.widget.js +236 -0
  151. data/lib/generators/social_stream/templates/public/javascripts/ui.checkbox.js +309 -0
  152. data/lib/generators/social_stream/templates/public/stylesheets/default/base.css +13 -12
  153. data/lib/generators/social_stream/templates/public/stylesheets/default/contacts.css +88 -0
  154. data/lib/generators/social_stream/templates/public/stylesheets/default/footer.css +1 -0
  155. data/lib/generators/social_stream/templates/public/stylesheets/default/header.css +5 -3
  156. data/lib/generators/social_stream/templates/public/stylesheets/default/home.css +1 -1
  157. data/lib/generators/social_stream/templates/public/stylesheets/default/images/loading.gif +0 -0
  158. data/lib/generators/social_stream/templates/public/stylesheets/default/jquery.fileupload-ui.css +73 -0
  159. data/lib/generators/social_stream/templates/public/stylesheets/default/jquery.ui.slider.css +24 -0
  160. data/lib/generators/social_stream/templates/public/stylesheets/default/jquery.ui.slidertheme.css +32 -0
  161. data/lib/generators/social_stream/templates/public/stylesheets/default/messages.css +4 -0
  162. data/lib/generators/social_stream/templates/public/stylesheets/default/spheres.css +226 -0
  163. data/lib/generators/social_stream/templates/relations.yml +12 -12
  164. data/lib/social_stream.rb +2 -1
  165. data/lib/social_stream/ability.rb +5 -4
  166. data/lib/social_stream/controllers/helpers.rb +19 -0
  167. data/lib/social_stream/models/object.rb +3 -1
  168. data/lib/social_stream/models/subject.rb +19 -6
  169. data/lib/social_stream/rails.rb +23 -1
  170. data/lib/social_stream/test_helpers/controllers.rb +1 -1
  171. data/lib/social_stream/version.rb +1 -1
  172. data/lib/tasks/db/populate.rake +6 -9
  173. data/social_stream.gemspec +7 -4
  174. data/spec/controllers/comments_controller_spec.rb +1 -1
  175. data/spec/controllers/contacts_controller_spec.rb +23 -0
  176. data/spec/controllers/groups_controller_spec.rb +12 -1
  177. data/spec/controllers/permissions_controller_spec.rb +48 -0
  178. data/spec/controllers/posts_controller_spec.rb +4 -4
  179. data/spec/controllers/relation_customs_controller_spec.rb +130 -0
  180. data/spec/controllers/representations_spec.rb +74 -0
  181. data/spec/controllers/spheres_controller_spec.rb +108 -0
  182. data/spec/dummy/config/initializers/mailboxer.rb +8 -0
  183. data/spec/dummy/config/initializers/social_stream.rb +2 -2
  184. data/spec/dummy/config/relations.yml +12 -12
  185. data/spec/factories/relation_custom.rb +4 -0
  186. data/spec/factories/sphere.rb +5 -0
  187. data/spec/factories/tie.rb +4 -4
  188. data/spec/models/activity_spec.rb +58 -38
  189. data/spec/models/actor_spec.rb +1 -1
  190. data/spec/models/group_spec.rb +12 -0
  191. data/spec/models/like_spec.rb +68 -0
  192. data/spec/models/profile_spec.rb +2 -1
  193. data/spec/models/relation_custom_spec.rb +14 -0
  194. data/spec/models/tie_spec.rb +26 -2
  195. metadata +195 -94
  196. data/app/controllers/avatars_controller.rb +0 -51
  197. data/app/controllers/representations_controller.rb +0 -19
  198. data/app/controllers/ties_controller.rb +0 -22
  199. data/app/helpers/ties_helper.rb +0 -37
  200. data/app/models/avatar.rb +0 -91
  201. data/app/models/representation.rb +0 -35
  202. data/app/views/avatars/_form.html.erb +0 -12
  203. data/app/views/avatars/_precrop.html.erb +0 -66
  204. data/app/views/avatars/edit.html.erb +0 -6
  205. data/app/views/avatars/new.html.erb +0 -32
  206. data/app/views/avatars/show.html.erb +0 -5
  207. data/app/views/groups/_location.html.erb +0 -3
  208. data/app/views/groups/_logo.html.erb +0 -5
  209. data/app/views/home/_location.html.erb +0 -3
  210. data/app/views/subjects/_toolbar_home.html.erb +0 -9
  211. data/app/views/subjects/_toolbar_profile_menu.html.erb +0 -12
  212. data/app/views/subjects/_toolbar_profile_menu_basic_options.html.erb +0 -13
  213. data/app/views/subjects/_toolbar_profile_menu_tie_options.html.erb +0 -41
  214. data/app/views/ties/_new.html.erb +0 -64
  215. data/app/views/ties/_tie.html.erb +0 -23
  216. data/app/views/ties/new.html.erb +0 -1
  217. data/app/views/users/_location.html.erb +0 -3
  218. data/lib/generators/social_stream/templates/public/images/w3c_css.png +0 -0
  219. data/lib/generators/social_stream/templates/public/images/w3c_xhtml.png +0 -0
  220. data/lib/generators/social_stream/templates/public/javascripts/addContact.js +0 -100
  221. data/lib/generators/social_stream/templates/public/stylesheets/default/addContact.css +0 -29
  222. data/spec/controllers/representations_controller_spec.rb +0 -51
  223. data/spec/controllers/ties_controller_spec.rb +0 -19
  224. data/spec/models/representation_spec.rb +0 -16
@@ -14,6 +14,6 @@ describe Actor do
14
14
  end
15
15
 
16
16
  it "should generate relations" do
17
- assert Factory(:actor).relations.present?
17
+ assert Factory(:actor).relation_customs.present?
18
18
  end
19
19
  end
@@ -0,0 +1,12 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
2
+
3
+ describe Group do
4
+ it "should save description" do
5
+ g = Group.create(:name => "Test",
6
+ :description => "Testing description",
7
+ :_founder => Factory(:user).slug)
8
+
9
+ g.reload.description.should be_present
10
+ end
11
+ end
12
+
@@ -0,0 +1,68 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
2
+
3
+ describe Like do
4
+
5
+ describe "activity" do
6
+ before do
7
+ @like_activity = Factory(:like_activity)
8
+ @activity = @like_activity.parent
9
+ end
10
+
11
+ it "should recognize the user who likes it" do
12
+ assert @activity.liked_by?(@like_activity.sender)
13
+ end
14
+
15
+ it "should not recognize the user who does not like it" do
16
+ assert ! @activity.liked_by?(Factory(:user))
17
+ end
18
+ end
19
+
20
+ describe "actor" do
21
+ shared_examples_for "creates activity" do
22
+ it "should recognize the user who likes it" do
23
+ Like.build(@sender, @receiver).save
24
+
25
+ assert @receiver.liked_by?(@sender)
26
+ end
27
+
28
+ it "should increment like count" do
29
+ count = @receiver.like_count
30
+
31
+ Like.build(@sender, @receiver).save
32
+
33
+ @receiver.like_count.should eq(count + 1)
34
+ end
35
+
36
+ it "should decrement like count" do
37
+ @like = Like.build(@sender, @receiver)
38
+ @like.save
39
+
40
+ count = @receiver.like_count
41
+
42
+ @like.destroy
43
+
44
+ @receiver.like_count.should eq(count - 1)
45
+ end
46
+ end
47
+
48
+ context "friend" do
49
+ before do
50
+ tie = Factory(:friend)
51
+ @sender = tie.sender
52
+ @receiver = tie.receiver
53
+ end
54
+
55
+ it_should_behave_like "creates activity"
56
+ end
57
+
58
+ context "alien" do
59
+ before do
60
+ @sender, @receiver = 2.times.map{ Factory(:user) }
61
+ end
62
+
63
+ it_should_behave_like "creates activity"
64
+ end
65
+ end
66
+ end
67
+
68
+
@@ -22,7 +22,8 @@ describe Profile do
22
22
 
23
23
  context "accessed by other" do
24
24
  before do
25
- @ability = Ability.new(Factory(:user))
25
+ u = Factory(:user)
26
+ @ability = Ability.new(u)
26
27
  end
27
28
 
28
29
  it "should allow read" do
@@ -0,0 +1,14 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
2
+
3
+ describe Relation::Custom do
4
+ it "should assign parent" do
5
+ parent = Factory(:relation_custom)
6
+ sphere = parent.sphere
7
+
8
+ r = Relation::Custom.create! :name => "test",
9
+ :sphere_id => sphere.id
10
+
11
+ r.parent.should eq(parent)
12
+ end
13
+ end
14
+
@@ -7,7 +7,7 @@ describe Tie do
7
7
  end
8
8
 
9
9
  it "should be created from relation name" do
10
- relation = @sender.relations.first
10
+ relation = @sender.relation_customs.first
11
11
 
12
12
  tie = Tie.create :sender_id => @sender.actor_id,
13
13
  :receiver_id => @receiver.actor_id,
@@ -30,6 +30,30 @@ describe Tie do
30
30
  end
31
31
  end
32
32
 
33
+ describe "follower_count" do
34
+ it "should be incremented" do
35
+ sender, receiver = 2.times.map{ Factory(:user) }
36
+
37
+ count = receiver.follower_count
38
+
39
+ Tie.create :sender_id => sender.actor_id,
40
+ :receiver_id => receiver.actor_id,
41
+ :relation_id => sender.relation_customs.sort.first.id
42
+
43
+ receiver.reload.follower_count.should eq(count + 1)
44
+ end
45
+
46
+ it "should be decremented" do
47
+ tie = Factory(:friend)
48
+ receiver = tie.receiver
49
+ count = receiver.follower_count
50
+
51
+ tie.destroy
52
+
53
+ receiver.reload.follower_count.should eq(count - 1)
54
+ end
55
+ end
56
+
33
57
  context "replied" do
34
58
  before do
35
59
  @sent = Factory(:friend)
@@ -147,7 +171,7 @@ describe Tie do
147
171
  end
148
172
 
149
173
  it "updates activity" do
150
- Tie.allowing(@s, 'update', 'activity').should include(@tie)
174
+ Tie.allowing(@s, 'update', 'activity').should_not include(@tie)
151
175
  end
152
176
  end
153
177
  end
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: 7
5
- prerelease: false
4
+ hash: 5
5
+ prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 4
9
- - 4
10
- version: 0.4.4
9
+ - 5
10
+ version: 0.4.5
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-04-19 00:00:00 +02:00
19
+ date: 2011-05-31 00:00:00 +02:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
@@ -75,12 +75,12 @@ dependencies:
75
75
  requirements:
76
76
  - - ~>
77
77
  - !ruby/object:Gem::Version
78
- hash: 23
78
+ hash: 27
79
79
  segments:
80
80
  - 1
81
- - 1
82
81
  - 2
83
- version: 1.1.2
82
+ - 2
83
+ version: 1.2.2
84
84
  type: :runtime
85
85
  version_requirements: *id004
86
86
  - !ruby/object:Gem::Dependency
@@ -116,9 +116,25 @@ dependencies:
116
116
  type: :runtime
117
117
  version_requirements: *id006
118
118
  - !ruby/object:Gem::Dependency
119
- name: jquery-rails
119
+ name: avatars_for_rails
120
120
  prerelease: false
121
121
  requirement: &id007 !ruby/object:Gem::Requirement
122
+ none: false
123
+ requirements:
124
+ - - ~>
125
+ - !ruby/object:Gem::Version
126
+ hash: 13
127
+ segments:
128
+ - 0
129
+ - 0
130
+ - 9
131
+ version: 0.0.9
132
+ type: :runtime
133
+ version_requirements: *id007
134
+ - !ruby/object:Gem::Dependency
135
+ name: jquery-rails
136
+ prerelease: false
137
+ requirement: &id008 !ruby/object:Gem::Requirement
122
138
  none: false
123
139
  requirements:
124
140
  - - ~>
@@ -130,11 +146,11 @@ dependencies:
130
146
  - 5
131
147
  version: 0.2.5
132
148
  type: :runtime
133
- version_requirements: *id007
149
+ version_requirements: *id008
134
150
  - !ruby/object:Gem::Dependency
135
151
  name: cancan
136
152
  prerelease: false
137
- requirement: &id008 !ruby/object:Gem::Requirement
153
+ requirement: &id009 !ruby/object:Gem::Requirement
138
154
  none: false
139
155
  requirements:
140
156
  - - ~>
@@ -146,61 +162,62 @@ dependencies:
146
162
  - 4
147
163
  version: 1.6.4
148
164
  type: :runtime
149
- version_requirements: *id008
165
+ version_requirements: *id009
150
166
  - !ruby/object:Gem::Dependency
151
167
  name: will_paginate
152
168
  prerelease: false
153
- requirement: &id009 !ruby/object:Gem::Requirement
169
+ requirement: &id010 !ruby/object:Gem::Requirement
154
170
  none: false
155
171
  requirements:
156
172
  - - ~>
157
173
  - !ruby/object:Gem::Version
158
- hash: 270495401
174
+ hash: -223651731
159
175
  segments:
160
176
  - 3
161
177
  - 0
162
- - pre2
178
+ - pre
179
+ - 2
163
180
  version: 3.0.pre2
164
181
  type: :runtime
165
- version_requirements: *id009
182
+ version_requirements: *id010
166
183
  - !ruby/object:Gem::Dependency
167
184
  name: omniauth
168
185
  prerelease: false
169
- requirement: &id010 !ruby/object:Gem::Requirement
186
+ requirement: &id011 !ruby/object:Gem::Requirement
170
187
  none: false
171
188
  requirements:
172
189
  - - ~>
173
190
  - !ruby/object:Gem::Version
174
- hash: 299253593
191
+ hash: 29
175
192
  segments:
176
193
  - 0
177
194
  - 2
178
- - 0
179
- - beta5
180
- version: 0.2.0.beta5
195
+ - 5
196
+ version: 0.2.5
181
197
  type: :runtime
182
- version_requirements: *id010
198
+ version_requirements: *id011
183
199
  - !ruby/object:Gem::Dependency
184
200
  name: oauth-plugin
185
201
  prerelease: false
186
- requirement: &id011 !ruby/object:Gem::Requirement
202
+ requirement: &id012 !ruby/object:Gem::Requirement
187
203
  none: false
188
204
  requirements:
189
205
  - - ~>
190
206
  - !ruby/object:Gem::Version
191
- hash: 270495424
207
+ hash: -223651605
192
208
  segments:
193
209
  - 0
194
210
  - 4
195
211
  - 0
196
- - pre1
212
+ - pre
213
+ - 1
197
214
  version: 0.4.0.pre1
198
215
  type: :runtime
199
- version_requirements: *id011
216
+ version_requirements: *id012
200
217
  - !ruby/object:Gem::Dependency
201
218
  name: rails_css_themes
202
219
  prerelease: false
203
- requirement: &id012 !ruby/object:Gem::Requirement
220
+ requirement: &id013 !ruby/object:Gem::Requirement
204
221
  none: false
205
222
  requirements:
206
223
  - - ~>
@@ -212,27 +229,27 @@ dependencies:
212
229
  - 0
213
230
  version: 1.0.0
214
231
  type: :runtime
215
- version_requirements: *id012
232
+ version_requirements: *id013
216
233
  - !ruby/object:Gem::Dependency
217
234
  name: mailboxer
218
235
  prerelease: false
219
- requirement: &id013 !ruby/object:Gem::Requirement
236
+ requirement: &id014 !ruby/object:Gem::Requirement
220
237
  none: false
221
238
  requirements:
222
239
  - - ~>
223
240
  - !ruby/object:Gem::Version
224
- hash: 63
241
+ hash: 19
225
242
  segments:
226
243
  - 0
227
- - 0
228
- - 16
229
- version: 0.0.16
244
+ - 1
245
+ - 4
246
+ version: 0.1.4
230
247
  type: :runtime
231
- version_requirements: *id013
248
+ version_requirements: *id014
232
249
  - !ruby/object:Gem::Dependency
233
250
  name: rmagick
234
251
  prerelease: false
235
- requirement: &id014 !ruby/object:Gem::Requirement
252
+ requirement: &id015 !ruby/object:Gem::Requirement
236
253
  none: false
237
254
  requirements:
238
255
  - - ~>
@@ -244,11 +261,11 @@ dependencies:
244
261
  - 1
245
262
  version: 2.13.1
246
263
  type: :runtime
247
- version_requirements: *id014
264
+ version_requirements: *id015
248
265
  - !ruby/object:Gem::Dependency
249
266
  name: acts-as-taggable-on
250
267
  prerelease: false
251
- requirement: &id015 !ruby/object:Gem::Requirement
268
+ requirement: &id016 !ruby/object:Gem::Requirement
252
269
  none: false
253
270
  requirements:
254
271
  - - ~>
@@ -260,11 +277,27 @@ dependencies:
260
277
  - 6
261
278
  version: 2.0.6
262
279
  type: :runtime
263
- version_requirements: *id015
280
+ version_requirements: *id016
281
+ - !ruby/object:Gem::Dependency
282
+ name: formtastic
283
+ prerelease: false
284
+ requirement: &id017 !ruby/object:Gem::Requirement
285
+ none: false
286
+ requirements:
287
+ - - ~>
288
+ - !ruby/object:Gem::Version
289
+ hash: 25
290
+ segments:
291
+ - 1
292
+ - 2
293
+ - 3
294
+ version: 1.2.3
295
+ type: :runtime
296
+ version_requirements: *id017
264
297
  - !ruby/object:Gem::Dependency
265
298
  name: rails
266
299
  prerelease: false
267
- requirement: &id016 !ruby/object:Gem::Requirement
300
+ requirement: &id018 !ruby/object:Gem::Requirement
268
301
  none: false
269
302
  requirements:
270
303
  - - ~>
@@ -276,11 +309,11 @@ dependencies:
276
309
  - 7
277
310
  version: 3.0.7
278
311
  type: :development
279
- version_requirements: *id016
312
+ version_requirements: *id018
280
313
  - !ruby/object:Gem::Dependency
281
314
  name: capybara
282
315
  prerelease: false
283
- requirement: &id017 !ruby/object:Gem::Requirement
316
+ requirement: &id019 !ruby/object:Gem::Requirement
284
317
  none: false
285
318
  requirements:
286
319
  - - ~>
@@ -292,11 +325,11 @@ dependencies:
292
325
  - 9
293
326
  version: 0.3.9
294
327
  type: :development
295
- version_requirements: *id017
328
+ version_requirements: *id019
296
329
  - !ruby/object:Gem::Dependency
297
330
  name: sqlite3-ruby
298
331
  prerelease: false
299
- requirement: &id018 !ruby/object:Gem::Requirement
332
+ requirement: &id020 !ruby/object:Gem::Requirement
300
333
  none: false
301
334
  requirements:
302
335
  - - ">="
@@ -306,11 +339,11 @@ dependencies:
306
339
  - 0
307
340
  version: "0"
308
341
  type: :development
309
- version_requirements: *id018
342
+ version_requirements: *id020
310
343
  - !ruby/object:Gem::Dependency
311
344
  name: ruby-debug
312
345
  prerelease: false
313
- requirement: &id019 !ruby/object:Gem::Requirement
346
+ requirement: &id021 !ruby/object:Gem::Requirement
314
347
  none: false
315
348
  requirements:
316
349
  - - ~>
@@ -322,11 +355,11 @@ dependencies:
322
355
  - 3
323
356
  version: 0.10.3
324
357
  type: :development
325
- version_requirements: *id019
358
+ version_requirements: *id021
326
359
  - !ruby/object:Gem::Dependency
327
360
  name: rspec-rails
328
361
  prerelease: false
329
- requirement: &id020 !ruby/object:Gem::Requirement
362
+ requirement: &id022 !ruby/object:Gem::Requirement
330
363
  none: false
331
364
  requirements:
332
365
  - - ~>
@@ -338,11 +371,11 @@ dependencies:
338
371
  - 0
339
372
  version: 2.5.0
340
373
  type: :development
341
- version_requirements: *id020
374
+ version_requirements: *id022
342
375
  - !ruby/object:Gem::Dependency
343
376
  name: factory_girl
344
377
  prerelease: false
345
- requirement: &id021 !ruby/object:Gem::Requirement
378
+ requirement: &id023 !ruby/object:Gem::Requirement
346
379
  none: false
347
380
  requirements:
348
381
  - - ~>
@@ -354,11 +387,11 @@ dependencies:
354
387
  - 2
355
388
  version: 1.3.2
356
389
  type: :development
357
- version_requirements: *id021
390
+ version_requirements: *id023
358
391
  - !ruby/object:Gem::Dependency
359
392
  name: forgery
360
393
  prerelease: false
361
- requirement: &id022 !ruby/object:Gem::Requirement
394
+ requirement: &id024 !ruby/object:Gem::Requirement
362
395
  none: false
363
396
  requirements:
364
397
  - - ~>
@@ -370,11 +403,11 @@ dependencies:
370
403
  - 6
371
404
  version: 0.3.6
372
405
  type: :development
373
- version_requirements: *id022
406
+ version_requirements: *id024
374
407
  - !ruby/object:Gem::Dependency
375
408
  name: ci_reporter
376
409
  prerelease: false
377
- requirement: &id023 !ruby/object:Gem::Requirement
410
+ requirement: &id025 !ruby/object:Gem::Requirement
378
411
  none: false
379
412
  requirements:
380
413
  - - ~>
@@ -386,11 +419,11 @@ dependencies:
386
419
  - 4
387
420
  version: 1.6.4
388
421
  type: :development
389
- version_requirements: *id023
422
+ version_requirements: *id025
390
423
  - !ruby/object:Gem::Dependency
391
424
  name: nifty-generators
392
425
  prerelease: false
393
- requirement: &id024 !ruby/object:Gem::Requirement
426
+ requirement: &id026 !ruby/object:Gem::Requirement
394
427
  none: false
395
428
  requirements:
396
429
  - - ~>
@@ -402,7 +435,7 @@ dependencies:
402
435
  - 5
403
436
  version: 0.4.5
404
437
  type: :development
405
- version_requirements: *id024
438
+ version_requirements: *id026
406
439
  description: Ruby on Rails engine supporting social networking features and activity streams.
407
440
  email:
408
441
  executables: []
@@ -422,7 +455,6 @@ files:
422
455
  - app/controllers/activities_controller.rb
423
456
  - app/controllers/api_controller.rb
424
457
  - app/controllers/authentications_controller.rb
425
- - app/controllers/avatars_controller.rb
426
458
  - app/controllers/comments_controller.rb
427
459
  - app/controllers/contacts_controller.rb
428
460
  - app/controllers/conversations_controller.rb
@@ -431,20 +463,25 @@ files:
431
463
  - app/controllers/home_controller.rb
432
464
  - app/controllers/likes_controller.rb
433
465
  - app/controllers/messages_controller.rb
466
+ - app/controllers/notifications_controller.rb
434
467
  - app/controllers/omniauth_callbacks_controller.rb
468
+ - app/controllers/permissions_controller.rb
435
469
  - app/controllers/posts_controller.rb
436
470
  - app/controllers/profiles_controller.rb
437
- - app/controllers/representations_controller.rb
471
+ - app/controllers/relation/customs_controller.rb
472
+ - app/controllers/spheres_controller.rb
438
473
  - app/controllers/subjects_controller.rb
439
474
  - app/controllers/tags_controller.rb
440
- - app/controllers/ties_controller.rb
441
475
  - app/controllers/users_controller.rb
442
476
  - app/helpers/activities_helper.rb
443
477
  - app/helpers/contacts_helper.rb
444
478
  - app/helpers/groups_helper.rb
445
479
  - app/helpers/location_helper.rb
480
+ - app/helpers/notifications_helper.rb
481
+ - app/helpers/permissions_helper.rb
482
+ - app/helpers/profiles_helper.rb
446
483
  - app/helpers/subjects_helper.rb
447
- - app/helpers/ties_helper.rb
484
+ - app/helpers/toolbar_helper.rb
448
485
  - app/helpers/users_helper.rb
449
486
  - app/models/ability.rb
450
487
  - app/models/activity.rb
@@ -453,8 +490,8 @@ files:
453
490
  - app/models/activity_verb.rb
454
491
  - app/models/actor.rb
455
492
  - app/models/authentication.rb
456
- - app/models/avatar.rb
457
493
  - app/models/comment.rb
494
+ - app/models/contact.rb
458
495
  - app/models/group.rb
459
496
  - app/models/like.rb
460
497
  - app/models/permission.rb
@@ -464,7 +501,6 @@ files:
464
501
  - app/models/relation/custom.rb
465
502
  - app/models/relation/public.rb
466
503
  - app/models/relation_permission.rb
467
- - app/models/representation.rb
468
504
  - app/models/sphere.rb
469
505
  - app/models/tie.rb
470
506
  - app/models/tie_activity.rb
@@ -482,19 +518,22 @@ files:
482
518
  - app/views/activity_objects/_activity_object.html.erb
483
519
  - app/views/actors/_actor.html.erb
484
520
  - app/views/api/activity_atom_feed.atom.builder
485
- - app/views/avatars/_form.html.erb
486
- - app/views/avatars/_precrop.html.erb
487
- - app/views/avatars/edit.html.erb
488
521
  - app/views/avatars/index.html.erb
489
- - app/views/avatars/new.html.erb
490
- - app/views/avatars/show.html.erb
491
522
  - app/views/comments/_comment.html.erb
492
523
  - app/views/comments/_new.html.erb
493
524
  - app/views/comments/create.js.erb
494
525
  - app/views/comments/destroy.js.erb
526
+ - app/views/contacts/_contact.html.erb
527
+ - app/views/contacts/_edit.html.erb
528
+ - app/views/contacts/_form.html.erb
495
529
  - app/views/contacts/_index.html.erb
530
+ - app/views/contacts/_pendings.html.erb
531
+ - app/views/contacts/_suggestions.html.erb
532
+ - app/views/contacts/_suggestions_and_pendings.html.erb
533
+ - app/views/contacts/edit.html.erb
496
534
  - app/views/contacts/index.html.erb
497
535
  - app/views/contacts/index.js.erb
536
+ - app/views/contacts/new.html.erb
498
537
  - app/views/conversations/_conversation.html.erb
499
538
  - app/views/conversations/_conversation_full.html.erb
500
539
  - app/views/conversations/_conversations.html.erb
@@ -517,8 +556,6 @@ files:
517
556
  - app/views/frontpage/index.html.erb
518
557
  - app/views/groups/_group.html.erb
519
558
  - app/views/groups/_index.html.erb
520
- - app/views/groups/_location.html.erb
521
- - app/views/groups/_logo.html.erb
522
559
  - app/views/groups/_new.html.erb
523
560
  - app/views/groups/_sidebar_index.html.erb
524
561
  - app/views/groups/_sidebar_show.html.erb
@@ -527,11 +564,11 @@ files:
527
564
  - app/views/groups/new.html.erb
528
565
  - app/views/groups/show.html.erb
529
566
  - app/views/home/_groups.html.erb
530
- - app/views/home/_location.html.erb
531
567
  - app/views/home/_menu.html.erb
532
568
  - app/views/home/_sidebar.html.erb
533
569
  - app/views/home/index.html.erb
534
570
  - app/views/layouts/_account.html.erb
571
+ - app/views/layouts/_flash.html.erb
535
572
  - app/views/layouts/_footer.html.erb
536
573
  - app/views/layouts/_header.erb
537
574
  - app/views/layouts/_representation.html.erb
@@ -546,39 +583,73 @@ files:
546
583
  - app/views/messages/_new.html.erb
547
584
  - app/views/messages/new.html.erb
548
585
  - app/views/messages/new.js.erb
586
+ - app/views/notification_mailer/new_notification_email.html.erb
587
+ - app/views/notification_mailer/new_notification_email.text.erb
588
+ - app/views/notifications/_index.html.erb
589
+ - app/views/notifications/_notification.html.erb
590
+ - app/views/notifications/_show.html.erb
591
+ - app/views/notifications/activities/_follow_body.html.erb
592
+ - app/views/notifications/activities/_follow_subject.html.erb
593
+ - app/views/notifications/activities/_like_body.html.erb
594
+ - app/views/notifications/activities/_like_object_body.html.erb
595
+ - app/views/notifications/activities/_like_object_subject.html.erb
596
+ - app/views/notifications/activities/_like_subject.html.erb
597
+ - app/views/notifications/activities/_like_subject_body.html.erb
598
+ - app/views/notifications/activities/_like_subject_subject.html.erb
599
+ - app/views/notifications/activities/_make-friend_body.html.erb
600
+ - app/views/notifications/activities/_make-friend_subject.html.erb
601
+ - app/views/notifications/activities/_post_body.html.erb
602
+ - app/views/notifications/activities/_post_subject.html.erb
603
+ - app/views/notifications/activities/_update_body.html.erb
604
+ - app/views/notifications/activities/_update_subject.html.erb
605
+ - app/views/notifications/index.html.erb
606
+ - app/views/notifications/index.js.erb
607
+ - app/views/notifications/show.html.erb
608
+ - app/views/permissions/_index.html.erb
609
+ - app/views/permissions/index.js.erb
549
610
  - app/views/posts/_post.html.erb
550
611
  - app/views/posts/create.js.erb
551
612
  - app/views/posts/destroy.js.erb
613
+ - app/views/profiles/_contact.html.erb
614
+ - app/views/profiles/_experience.html.erb
615
+ - app/views/profiles/_personal.html.erb
552
616
  - app/views/profiles/_profile.html.erb
617
+ - app/views/profiles/_tags.html.erb
553
618
  - app/views/profiles/edit.html.erb
554
619
  - app/views/profiles/show.html.erb
555
620
  - app/views/profiles/update.js.erb
621
+ - app/views/relation/customs/_form.html.erb
622
+ - app/views/relation/customs/_index.html.erb
623
+ - app/views/relation/customs/_list.html.erb
624
+ - app/views/relation/customs/create.js.erb
625
+ - app/views/relation/customs/index.js.erb
626
+ - app/views/relation/customs/update.js.erb
627
+ - app/views/spheres/_form.html.erb
628
+ - app/views/spheres/_jquery.erb
629
+ - app/views/spheres/_list.html.erb
630
+ - app/views/spheres/create.js.erb
631
+ - app/views/spheres/index.html.erb
556
632
  - app/views/subjects/_contacts.html.erb
557
633
  - app/views/subjects/_tabs.html.erb
558
- - app/views/subjects/_toolbar_home.html.erb
559
- - app/views/subjects/_toolbar_home_menu.html.erb
560
- - app/views/subjects/_toolbar_home_menu_options.html.erb
561
- - app/views/subjects/_toolbar_home_menu_options_subjects.html.erb
562
- - app/views/subjects/_toolbar_logo.html.erb
563
- - app/views/subjects/_toolbar_message_menu.html.erb
564
- - app/views/subjects/_toolbar_profile.html.erb
565
- - app/views/subjects/_toolbar_profile_menu.html.erb
566
- - app/views/subjects/_toolbar_profile_menu_basic_options.html.erb
567
- - app/views/subjects/_toolbar_profile_menu_tie_options.html.erb
568
634
  - app/views/ties/_edit.html.erb
569
635
  - app/views/ties/_form.html.erb
570
- - app/views/ties/_new.html.erb
571
- - app/views/ties/_pendings.html.erb
572
- - app/views/ties/_suggestions.html.erb
573
- - app/views/ties/_tie.html.erb
574
636
  - app/views/ties/create.js.erb
575
637
  - app/views/ties/edit.html.erb
576
- - app/views/ties/new.html.erb
577
638
  - app/views/ties/suggestion.html.erb
578
639
  - app/views/ties/suggestion.js.erb
640
+ - app/views/toolbar/_home.html.erb
641
+ - app/views/toolbar/_home_menu.html.erb
642
+ - app/views/toolbar/_home_menu_options.html.erb
643
+ - app/views/toolbar/_home_menu_options_subjects.html.erb
644
+ - app/views/toolbar/_logo.html.erb
645
+ - app/views/toolbar/_message_menu.html.erb
646
+ - app/views/toolbar/_notifications_menu.html.erb
647
+ - app/views/toolbar/_profile.html.erb
648
+ - app/views/toolbar/_profile_menu.html.erb
649
+ - app/views/toolbar/_profile_menu_basic_options.html.erb
650
+ - app/views/toolbar/_profile_menu_tie_options.html.erb
579
651
  - app/views/users/_groups.html.erb
580
652
  - app/views/users/_index.html.erb
581
- - app/views/users/_location.html.erb
582
653
  - app/views/users/_sidebar_index.html.erb
583
654
  - app/views/users/index.html.erb
584
655
  - app/views/users/index.js.erb
@@ -593,6 +664,10 @@ files:
593
664
  - lib/generators/social_stream/install_generator.rb
594
665
  - lib/generators/social_stream/templates/initializer.rb
595
666
  - lib/generators/social_stream/templates/migration.rb
667
+ - lib/generators/social_stream/templates/public/images/HTML5.png
668
+ - lib/generators/social_stream/templates/public/images/HTML5_Semantics.png
669
+ - lib/generators/social_stream/templates/public/images/HTML5_Styling.png
670
+ - lib/generators/social_stream/templates/public/images/Jcrop.gif
596
671
  - lib/generators/social_stream/templates/public/images/boxy/boxy-ne.png
597
672
  - lib/generators/social_stream/templates/public/images/boxy/boxy-nw.png
598
673
  - lib/generators/social_stream/templates/public/images/boxy/boxy-se.png
@@ -631,6 +706,8 @@ files:
631
706
  - lib/generators/social_stream/templates/public/images/btn/btn_info.png
632
707
  - lib/generators/social_stream/templates/public/images/btn/btn_like.png
633
708
  - lib/generators/social_stream/templates/public/images/btn/btn_next.png
709
+ - lib/generators/social_stream/templates/public/images/btn/btn_notification.png
710
+ - lib/generators/social_stream/templates/public/images/btn/btn_notification_delete.png
634
711
  - lib/generators/social_stream/templates/public/images/btn/btn_notifications.png
635
712
  - lib/generators/social_stream/templates/public/images/btn/btn_outline.png
636
713
  - lib/generators/social_stream/templates/public/images/btn/btn_page_link.png
@@ -687,6 +764,7 @@ files:
687
764
  - lib/generators/social_stream/templates/public/images/btn/uno.png
688
765
  - lib/generators/social_stream/templates/public/images/btn/viewer.png
689
766
  - lib/generators/social_stream/templates/public/images/btn/warning.png
767
+ - lib/generators/social_stream/templates/public/images/cancel.png
690
768
  - lib/generators/social_stream/templates/public/images/frontpage/collaborate.png
691
769
  - lib/generators/social_stream/templates/public/images/frontpage/comments.png
692
770
  - lib/generators/social_stream/templates/public/images/frontpage/green_sq.png
@@ -704,23 +782,27 @@ files:
704
782
  - lib/generators/social_stream/templates/public/images/frontpage/tags.png
705
783
  - lib/generators/social_stream/templates/public/images/frontpage/yellow_sq.png
706
784
  - lib/generators/social_stream/templates/public/images/header-logo.png
785
+ - lib/generators/social_stream/templates/public/images/html5-badge-h-css3-semantics.png
786
+ - lib/generators/social_stream/templates/public/images/icon_checkbox.png
707
787
  - lib/generators/social_stream/templates/public/images/icons/favicon.ico
708
788
  - lib/generators/social_stream/templates/public/images/left.png
709
789
  - lib/generators/social_stream/templates/public/images/loader.gif
710
790
  - lib/generators/social_stream/templates/public/images/logo.png
711
791
  - lib/generators/social_stream/templates/public/images/logos/actor/group.png
792
+ - lib/generators/social_stream/templates/public/images/logos/actor/remote_subject.png
793
+ - lib/generators/social_stream/templates/public/images/logos/actor/remote_user.png
712
794
  - lib/generators/social_stream/templates/public/images/logos/actor/user.png
713
795
  - lib/generators/social_stream/templates/public/images/logos/original/group.png
714
796
  - lib/generators/social_stream/templates/public/images/logos/original/user.png
715
797
  - lib/generators/social_stream/templates/public/images/logos/profile/group.png
716
798
  - lib/generators/social_stream/templates/public/images/logos/profile/user.png
799
+ - lib/generators/social_stream/templates/public/images/logos/representation/group.png
800
+ - lib/generators/social_stream/templates/public/images/logos/representation/user.png
717
801
  - lib/generators/social_stream/templates/public/images/logos/tie/group.png
718
802
  - lib/generators/social_stream/templates/public/images/logos/tie/user.png
803
+ - lib/generators/social_stream/templates/public/images/pbar-ani.gif
719
804
  - lib/generators/social_stream/templates/public/images/right.png
720
805
  - lib/generators/social_stream/templates/public/images/title_background.png
721
- - lib/generators/social_stream/templates/public/images/w3c_css.png
722
- - lib/generators/social_stream/templates/public/images/w3c_xhtml.png
723
- - lib/generators/social_stream/templates/public/javascripts/addContact.js
724
806
  - lib/generators/social_stream/templates/public/javascripts/ajax.paginate.js
725
807
  - lib/generators/social_stream/templates/public/javascripts/avatars.js
726
808
  - lib/generators/social_stream/templates/public/javascripts/ckeditor/.htaccess
@@ -942,28 +1024,36 @@ files:
942
1024
  - lib/generators/social_stream/templates/public/javascripts/jquery.ba-url.js
943
1025
  - lib/generators/social_stream/templates/public/javascripts/jquery.boxy.js
944
1026
  - lib/generators/social_stream/templates/public/javascripts/jquery.fcbkcomplete.min.js
1027
+ - lib/generators/social_stream/templates/public/javascripts/jquery.fileupload-ui.js
1028
+ - lib/generators/social_stream/templates/public/javascripts/jquery.fileupload.js
1029
+ - lib/generators/social_stream/templates/public/javascripts/jquery.form.js
945
1030
  - lib/generators/social_stream/templates/public/javascripts/jquery.js
946
1031
  - lib/generators/social_stream/templates/public/javascripts/jquery.livequery.js
947
1032
  - lib/generators/social_stream/templates/public/javascripts/jquery.min.js
948
1033
  - lib/generators/social_stream/templates/public/javascripts/jquery.scrollTo.min.js
1034
+ - lib/generators/social_stream/templates/public/javascripts/jquery.ui.mouse.js
1035
+ - lib/generators/social_stream/templates/public/javascripts/jquery.ui.slider.js
1036
+ - lib/generators/social_stream/templates/public/javascripts/jquery.ui.widget.js
949
1037
  - lib/generators/social_stream/templates/public/javascripts/jquery.validate.js
950
1038
  - lib/generators/social_stream/templates/public/javascripts/main.js
951
1039
  - lib/generators/social_stream/templates/public/javascripts/menu-collapsed.js
952
1040
  - lib/generators/social_stream/templates/public/javascripts/menu.js
953
1041
  - lib/generators/social_stream/templates/public/javascripts/rails.js
954
1042
  - lib/generators/social_stream/templates/public/javascripts/superfish.js
1043
+ - lib/generators/social_stream/templates/public/javascripts/ui.checkbox.js
955
1044
  - lib/generators/social_stream/templates/public/javascripts/ui.dropdownchecklist.js
956
1045
  - lib/generators/social_stream/templates/public/stylesheets/default/activities.css
957
- - lib/generators/social_stream/templates/public/stylesheets/default/addContact.css
958
1046
  - lib/generators/social_stream/templates/public/stylesheets/default/avatars.css
959
1047
  - lib/generators/social_stream/templates/public/stylesheets/default/base.css
960
1048
  - lib/generators/social_stream/templates/public/stylesheets/default/carousel.css
1049
+ - lib/generators/social_stream/templates/public/stylesheets/default/contacts.css
961
1050
  - lib/generators/social_stream/templates/public/stylesheets/default/fcbkComplete.css
962
1051
  - lib/generators/social_stream/templates/public/stylesheets/default/footer.css
963
1052
  - lib/generators/social_stream/templates/public/stylesheets/default/frontpage.css
964
1053
  - lib/generators/social_stream/templates/public/stylesheets/default/header.css
965
1054
  - lib/generators/social_stream/templates/public/stylesheets/default/home.css
966
1055
  - lib/generators/social_stream/templates/public/stylesheets/default/images/fcbkcomplete/close.gif
1056
+ - lib/generators/social_stream/templates/public/stylesheets/default/images/loading.gif
967
1057
  - lib/generators/social_stream/templates/public/stylesheets/default/images/ui-bg_flat_0_aaaaaa_40x100.png
968
1058
  - lib/generators/social_stream/templates/public/stylesheets/default/images/ui-bg_flat_75_ffffff_40x100.png
969
1059
  - lib/generators/social_stream/templates/public/stylesheets/default/images/ui-bg_glass_55_fbf9ee_1x400.png
@@ -980,6 +1070,9 @@ files:
980
1070
  - lib/generators/social_stream/templates/public/stylesheets/default/jqcloud.css
981
1071
  - lib/generators/social_stream/templates/public/stylesheets/default/jquery-ui.css
982
1072
  - lib/generators/social_stream/templates/public/stylesheets/default/jquery.Jcrop.css
1073
+ - lib/generators/social_stream/templates/public/stylesheets/default/jquery.fileupload-ui.css
1074
+ - lib/generators/social_stream/templates/public/stylesheets/default/jquery.ui.slider.css
1075
+ - lib/generators/social_stream/templates/public/stylesheets/default/jquery.ui.slidertheme.css
983
1076
  - lib/generators/social_stream/templates/public/stylesheets/default/menu.css
984
1077
  - lib/generators/social_stream/templates/public/stylesheets/default/messages.css
985
1078
  - lib/generators/social_stream/templates/public/stylesheets/default/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
@@ -997,6 +1090,7 @@ files:
997
1090
  - lib/generators/social_stream/templates/public/stylesheets/default/smoothness/images/ui-icons_cd0a0a_256x240.png
998
1091
  - lib/generators/social_stream/templates/public/stylesheets/default/smoothness/jquery-ui-1.7.3.custom.css
999
1092
  - lib/generators/social_stream/templates/public/stylesheets/default/smoothness/jquery-ui-1.8.4.custom.css
1093
+ - lib/generators/social_stream/templates/public/stylesheets/default/spheres.css
1000
1094
  - lib/generators/social_stream/templates/relations.yml
1001
1095
  - lib/paperclip/social_stream.rb
1002
1096
  - lib/social_stream.rb
@@ -1018,11 +1112,13 @@ files:
1018
1112
  - spec/controllers/groups_controller_spec.rb
1019
1113
  - spec/controllers/home_controller_spec.rb
1020
1114
  - spec/controllers/likes_controller_spec.rb
1115
+ - spec/controllers/permissions_controller_spec.rb
1021
1116
  - spec/controllers/posts_controller_spec.rb
1022
1117
  - spec/controllers/profiles_controller_spec.rb
1023
- - spec/controllers/representations_controller_spec.rb
1118
+ - spec/controllers/relation_customs_controller_spec.rb
1119
+ - spec/controllers/representations_spec.rb
1120
+ - spec/controllers/spheres_controller_spec.rb
1024
1121
  - spec/controllers/subjects_controller.rb
1025
- - spec/controllers/ties_controller_spec.rb
1026
1122
  - spec/controllers/users_controller_spec.rb
1027
1123
  - spec/dummy/.gitignore
1028
1124
  - spec/dummy/Rakefile
@@ -1040,6 +1136,7 @@ files:
1040
1136
  - spec/dummy/config/initializers/backtrace_silencers.rb
1041
1137
  - spec/dummy/config/initializers/devise.rb
1042
1138
  - spec/dummy/config/initializers/inflections.rb
1139
+ - spec/dummy/config/initializers/mailboxer.rb
1043
1140
  - spec/dummy/config/initializers/mime_types.rb
1044
1141
  - spec/dummy/config/initializers/secret_token.rb
1045
1142
  - spec/dummy/config/initializers/session_store.rb
@@ -1060,14 +1157,18 @@ files:
1060
1157
  - spec/factories/comment.rb
1061
1158
  - spec/factories/group.rb
1062
1159
  - spec/factories/post.rb
1160
+ - spec/factories/relation_custom.rb
1161
+ - spec/factories/sphere.rb
1063
1162
  - spec/factories/tie.rb
1064
1163
  - spec/factories/user.rb
1065
1164
  - spec/integration/navigation_spec.rb
1066
1165
  - spec/models/activity_spec.rb
1067
1166
  - spec/models/actor_spec.rb
1167
+ - spec/models/group_spec.rb
1168
+ - spec/models/like_spec.rb
1068
1169
  - spec/models/post_spec.rb
1069
1170
  - spec/models/profile_spec.rb
1070
- - spec/models/representation_spec.rb
1171
+ - spec/models/relation_custom_spec.rb
1071
1172
  - spec/models/tie_activity_spec.rb
1072
1173
  - spec/models/tie_spec.rb
1073
1174
  - spec/models/user_spec.rb
@@ -1107,7 +1208,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1107
1208
  requirements: []
1108
1209
 
1109
1210
  rubyforge_project:
1110
- rubygems_version: 1.3.7
1211
+ rubygems_version: 1.6.2
1111
1212
  signing_key:
1112
1213
  specification_version: 3
1113
1214
  summary: Social networking features and activity streams for Ruby on Rails.