social_stream-base 0.9.12 → 0.9.13
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/app/assets/images/logos/original/user.png +0 -0
- data/app/assets/javascripts/activities.js.erb +17 -5
- data/app/assets/stylesheets/activities.css +8 -3
- data/app/assets/stylesheets/base.css +5 -25
- data/app/assets/stylesheets/header.css +5 -5
- data/app/models/actor.rb +26 -8
- data/app/views/activities/_new.html.erb +1 -1
- data/app/views/comments/_new.html.erb +13 -3
- data/app/views/devise/passwords/edit.html.erb +1 -1
- data/app/views/layouts/_header.erb +1 -1
- data/lib/social_stream/base/version.rb +1 -1
- metadata +341 -193
Binary file
|
@@ -51,6 +51,7 @@ activate_anti_rebounds = function(){
|
|
51
51
|
});
|
52
52
|
}
|
53
53
|
|
54
|
+
|
54
55
|
unblock_all_forms = function() {
|
55
56
|
//Sharing buttons
|
56
57
|
$(".submitActivity").val("<%= I18n.t('share') %>").removeAttr("disabled");
|
@@ -103,7 +104,9 @@ $(function() {
|
|
103
104
|
var comments = $(this).children(".subactivity");
|
104
105
|
//check if there are more than 3 comments
|
105
106
|
if (comments.size() > 3){
|
106
|
-
$(this).prepend("<div class='hide_show_comments'><a href='#' onclick='showAllComments(\""+
|
107
|
+
$(this).prepend("<div class='hide_show_comments'><a href='#' onclick='showAllComments(\""+
|
108
|
+
$(this).attr('id') +"\"); return false;'><%= I18n.t('comment.view_all') %> (" +
|
109
|
+
comments.size() + ")</a></div><div class='space_comments'></div>");
|
107
110
|
comments.slice(0,comments.size()-2).hide();
|
108
111
|
//hide alto space_comments
|
109
112
|
$(this).children(".space_comments").slice(0,comments.size()-2).hide();
|
@@ -123,13 +126,22 @@ $(".input_new_comments").live("click", function(){
|
|
123
126
|
$(".new_comment").removeClass("new_comment_shown");
|
124
127
|
$(".actor_name_new_comment").hide();
|
125
128
|
$(".actor_logo_new_comment").hide();
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
129
|
+
var comment= $(this).parents(".activity_new_comment");
|
130
|
+
comment.find(".activities_comment_btn").show();
|
131
|
+
$(this).parents(".new_comment").addClass("new_comment_shown");
|
132
|
+
comment.find(".actor_name_new_comment").show();
|
133
|
+
comment.find(".actor_logo_new_comment").show();
|
130
134
|
return false;
|
131
135
|
});
|
132
136
|
|
137
|
+
autoSize= function(activity_dom_id) {
|
138
|
+
// Copy textarea contents; browser will calculate correct height of copy,
|
139
|
+
// which will make overall container taller, which will make textarea taller.
|
140
|
+
var text = $("#comment_text_"+activity_dom_id).val().replace(/\n/g, '<br/>');
|
141
|
+
$("#copy_comment_text_"+activity_dom_id).html(text);
|
142
|
+
}
|
143
|
+
|
144
|
+
|
133
145
|
//javascript for tocomment option
|
134
146
|
$(".to_comment").live("click", function(){
|
135
147
|
$(this).parents(".activity_content").find(".activity_new_comment").show();
|
@@ -61,7 +61,8 @@
|
|
61
61
|
border: thin solid #D4E4E4; padding-top: 3px; padding-bottom: 3px;display:none;}
|
62
62
|
.actor_logo_subactivity, .actor_logo_new_comment{ width: 40px; padding: 5px 3px 5px 2px; display: inline-block;
|
63
63
|
vertical-align: top;}
|
64
|
-
.input_new_comments{ border:1px solid #BDC7D8; width:98%; padding: 2px; color:#2A3890;
|
64
|
+
.input_new_comments{ border:1px solid #BDC7D8; width:98%; padding: 2px; color:#2A3890; resize: none;
|
65
|
+
position: absolute; height: 100%; overflow: hidden; font-size:inherit;}
|
65
66
|
.subactivity{ font-size: 11px; padding: 0px 5px 0px 5px; background: #deeff8;
|
66
67
|
border: thin solid #D4E4E4; display:block; }
|
67
68
|
.space_comments { padding-top: 1px; padding-bottom: 1px;}
|
@@ -70,10 +71,14 @@
|
|
70
71
|
#activities_share_btn { text-align: right; padding: 5px 16px 0px 10px; vertical-align: middle;}
|
71
72
|
.activities_comment_btn{ text-align: right; padding: 5px 5px 2px 10px; vertical-align: middle;}
|
72
73
|
|
73
|
-
.hide_show_comments{font-size: 11px; padding
|
74
|
-
border: thin solid #D4E4E4;
|
74
|
+
.hide_show_comments{font-size: 11px; padding: 3px 10px; background: #deeff8;
|
75
|
+
border: thin solid #D4E4E4;}
|
75
76
|
.new_comment{ width: 465px;}
|
76
77
|
.new_comment_shown{ width: 410px;}
|
78
|
+
|
79
|
+
.copy_new_comment{visibility: hidden; padding:6px; padding-bottom: 1.5em;font-size:inherit; line-height: 1.15em;
|
80
|
+
margin-bottom:7px;}
|
81
|
+
.input_new_comments_container{min-height: 30px; position: relative; }
|
77
82
|
/*********** DROP DOWN**********/
|
78
83
|
#security_chzn .chzn-choices {
|
79
84
|
padding-left: 20px;
|
@@ -52,30 +52,11 @@ textarea.new_contact_text_area{ height: 100px; color: #2A3890;}
|
|
52
52
|
.select_relations select{ font-size: 12px; color: white; background-color:#1F4A75;}
|
53
53
|
|
54
54
|
/************ Forms - Buttons SECTION ***************************/
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
border-radius: 0.2em; color: #fff; padding: 0 10px; height: 22px; border: none;}
|
61
|
-
.myButtonBlue span { display: block; line-height: 14px; padding: 3px 0 3px 10px;}
|
62
|
-
.myButtonBlue:active { background-position: bottom right; color: #000; outline: none; }
|
63
|
-
.myButtonBlue:active span { background-position: bottom left; padding: 3px 0 2px 18px; }
|
64
|
-
|
65
|
-
.myButtonLarge{ cursor:pointer;
|
66
|
-
background-image: -webkit-gradient(linear,left bottom,left top,
|
67
|
-
color-stop(0.01, rgb(116,191,67)),color-stop(0.51, rgb(117,189,68)),
|
68
|
-
color-stop(0.76, rgb(195,222,171)) );
|
69
|
-
background-image: -moz-linear-gradient(center bottom,rgb(116,191,67) 1%,
|
70
|
-
rgb(117,189,68) 51%,rgb(195,222,171) 76%);
|
71
|
-
border-radius: 0.2em;color: #fff; width: 200px; height: 26px; border: none;}
|
72
|
-
.myButtonLarge span { display: block; line-height: 14px; padding: 5px 0 5px 18px;}
|
73
|
-
.myButtonLarge:active { background-position: bottom right; color: #000; outline: none;}
|
74
|
-
.myButtonLarge:active span { background-position: bottom left; padding: 6px 0 4px 18px;}
|
75
|
-
|
76
|
-
.button{margin: 10px 0 10px 0px;padding: 3px 20px 3px 20px;color:#FFFFFF;background-color: #1F4A75;
|
77
|
-
-moz-border-radius: 6px; -webkit-border-radius: 6px; border-radius: 6px;
|
78
|
-
font-size: 13px;}
|
55
|
+
|
56
|
+
|
57
|
+
button, input[type=submit]{margin: 10px 0 10px 0px;padding: 3px 20px 3px 20px;color:#FFFFFF;
|
58
|
+
background-color: #1F4A75; -moz-border-radius: 6px; -webkit-border-radius: 6px;
|
59
|
+
border-radius: 6px; font-size: 13px;}
|
79
60
|
.optionHeader {
|
80
61
|
color: #fff;
|
81
62
|
overflow: hidden;
|
@@ -143,7 +124,6 @@ textarea.new_contact_text_area{ height: 100px; color: #2A3890;}
|
|
143
124
|
/********* Menu header SECTION ************/
|
144
125
|
.menu_list ul{list-style-type:none;}
|
145
126
|
.menu_list li{display: inline;padding-right: 2px; padding-left: 2px; }
|
146
|
-
.field_x{ border: thin solid #005C84; width: 130px;}
|
147
127
|
.line{ display:block; margin:10px 2px 10px 10px;}
|
148
128
|
|
149
129
|
/*************MENU ICON SECTION**********/
|
@@ -20,8 +20,8 @@
|
|
20
20
|
.div_login .subtexto{ padding-top: 8px; height:12px; font-size: 11px; }
|
21
21
|
.div_login .a_border{ border-right:thin solid; padding-right:7px; text-decoration:underline; }
|
22
22
|
#new_representation { display: inline-block;}
|
23
|
-
#header_notifications a{color: white; background: transparent url('btn/header_notifications.png') no-repeat center center;padding: 4px
|
24
|
-
#header_inbox_count a{ color: white; background-color: #879eb5; padding: 2px
|
23
|
+
#header_notifications a{color: white; background: transparent url('btn/header_notifications.png') no-repeat center center;padding: 4px 10px 6px 11px;}
|
24
|
+
#header_inbox_count a{ color: white; background-color: #879eb5; padding: 2px 7px 2px 7px;}
|
25
25
|
#representation { display: inline; padding-left:3px; padding-right:3px;}
|
26
26
|
.txt_config {color: #fff; vertical-align: top; display: inline; padding-top: 2px; border-right: thin solid;
|
27
27
|
padding-right: 3px;}
|
@@ -35,14 +35,14 @@
|
|
35
35
|
#menu_home ul {list-style: none; margin: 0px; float:left;}
|
36
36
|
#menu_home ul li {line-height:20px; vertical-align:top;}
|
37
37
|
|
38
|
-
#header_dropdown_menu,.header_dropdown_li {width:
|
38
|
+
#header_dropdown_menu,.header_dropdown_li {width: 120px;display:inline-block;vertical-align: top; height:22px; color:#FFF;}
|
39
39
|
|
40
|
-
#header_dropdown_menu ul li {width:
|
40
|
+
#header_dropdown_menu ul li {width: 120px;line-height: 15px;}
|
41
41
|
#header_dropdown_menu ul li a{padding: .40em 1em .70em 2.5em;}
|
42
42
|
#header_dropdown_menu ul li a:hover{color:#1F4A75;}
|
43
43
|
#header_dropdown_menu ul li ul li a{padding: .40em 1em .70em 1em;}
|
44
44
|
#header_dropdown_menu ul li ul li ul li a{padding: .40em 1em .70em 2.5em;}
|
45
|
-
#header_dropdown_menu ul li ul li ul{position: absolute; left: -
|
45
|
+
#header_dropdown_menu ul li ul li ul{position: absolute; left: -120px;}
|
46
46
|
#header_dropdown_menu a.session_change{background: transparent url('btn/arrow_session_change.png') no-repeat 3px 6px;}
|
47
47
|
|
48
48
|
#menu_home ul li.pipe,#menu_account ul li.pipe{padding:0; margin:0;font-size: 20px;font-weight: bold;}
|
data/app/models/actor.rb
CHANGED
@@ -198,25 +198,43 @@ class Actor < ActiveRecord::Base
|
|
198
198
|
# Options:
|
199
199
|
# * type: Filter by the class of the contacts.
|
200
200
|
# * direction: sent or received
|
201
|
-
# * relations: Restrict the relations of considered ties.
|
201
|
+
# * relations: Restrict the relations of considered ties. In the case of both directions,
|
202
|
+
# only relations belonging to {Actor} are valid. It defaults to relations of
|
203
|
+
# {Relation::Custom custom} and {Relation::Public public} types
|
202
204
|
# * include_self: False by default, don't include this actor as subject even they have ties with themselves.
|
205
|
+
# * load_subjects: True by default, make the queries for eager loading of contacts
|
203
206
|
#
|
204
207
|
def contact_actors(options = {})
|
205
208
|
subject_types = Array(options[:type] || self.class.subtypes)
|
206
209
|
subject_classes = subject_types.map{ |s| s.to_s.classify }
|
207
210
|
|
208
211
|
as = Actor.select("DISTINCT actors.*").
|
209
|
-
where('actors.subject_type' => subject_classes)
|
210
|
-
|
212
|
+
where('actors.subject_type' => subject_classes)
|
213
|
+
|
214
|
+
if options[:load_subjects].nil? || options[:load_subjects]
|
215
|
+
as = as.includes(subject_types)
|
216
|
+
end
|
211
217
|
|
218
|
+
# Make another query for getting the actors in the other way
|
219
|
+
if options[:direction].blank?
|
220
|
+
rcv_opts = options.dup
|
221
|
+
rcv_opts[:direction] = :received
|
222
|
+
rcv_opts[:load_subjects] = false
|
223
|
+
|
224
|
+
sender_ids = contact_actors(rcv_opts).map(&:id)
|
225
|
+
|
226
|
+
as = as.where(:id => sender_ids)
|
227
|
+
|
228
|
+
options[:direction] = :sent
|
229
|
+
end
|
212
230
|
|
213
231
|
case options[:direction]
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
232
|
+
when :sent
|
233
|
+
as = as.joins(:received_ties => :relation).merge(Contact.sent_by(self))
|
234
|
+
when :received
|
235
|
+
as = as.joins(:sent_ties => :relation).merge(Contact.received_by(self))
|
218
236
|
else
|
219
|
-
raise "
|
237
|
+
raise "How do you get here?!"
|
220
238
|
end
|
221
239
|
|
222
240
|
if options[:include_self].blank?
|
@@ -27,6 +27,6 @@
|
|
27
27
|
<% end %>
|
28
28
|
|
29
29
|
<div id="activities_share_btn">
|
30
|
-
<%= submit_tag(t('share'), :class => "
|
30
|
+
<%= submit_tag(t('share'), :class => "button submitActivity", :id => "masterSubmitButton") %>
|
31
31
|
</div>
|
32
32
|
<% end %>
|
@@ -18,9 +18,12 @@
|
|
18
18
|
|
19
19
|
<%= f.hidden_field :_contact_id %>
|
20
20
|
<%= f.hidden_field :_activity_parent_id %>
|
21
|
-
|
22
|
-
|
23
|
-
|
21
|
+
|
22
|
+
<div class="input_new_comments_container">
|
23
|
+
<%= f.text_area :text, :class =>"input_new_comments", :id => "comment_text_"+dom_id(activity), :rows => 1 %>
|
24
|
+
<div class="copy_new_comment" id="copy_comment_text_<%= dom_id(activity) %>"></div>
|
25
|
+
</div>
|
26
|
+
|
24
27
|
<div class="activities_comment_btn">
|
25
28
|
<div class="activities_security"></div>
|
26
29
|
<%= f.submit t('share'), :class =>"myButtonBlue submitActivity", :id => "comment_submit_"+dom_id(activity) %>
|
@@ -34,5 +37,12 @@
|
|
34
37
|
$(document).ready(function() {
|
35
38
|
$("#comment_text_<%= dom_id(activity) %>").Watermark("<%= I18n.t('comment.input') %>","#666");
|
36
39
|
activate_anti_rebounds();
|
40
|
+
|
41
|
+
$("#comment_text_<%= dom_id(activity) %>")
|
42
|
+
.change(function(){autoSize("<%= dom_id(activity) %>");})
|
43
|
+
.keydown(function(){autoSize("<%= dom_id(activity) %>");})
|
44
|
+
.keyup(function(){autoSize("<%= dom_id(activity) %>");});
|
45
|
+
autoSize("<%= dom_id(activity) %>");
|
46
|
+
|
37
47
|
});
|
38
48
|
<% end %>
|
@@ -21,7 +21,7 @@
|
|
21
21
|
</li>
|
22
22
|
<li class="pipe">·</li>
|
23
23
|
<li>
|
24
|
-
<%= link_to(t('message.
|
24
|
+
<%= link_to(t('message.other'), conversations_path) %>
|
25
25
|
<span id="header_inbox_count">
|
26
26
|
<%= link_to(current_subject.mailbox.inbox(:unread => true).count.to_s, conversations_path) %>
|
27
27
|
</span>
|
metadata
CHANGED
@@ -1,326 +1,464 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: social_stream-base
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 33
|
5
5
|
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 9
|
9
|
+
- 13
|
10
|
+
version: 0.9.13
|
6
11
|
platform: ruby
|
7
|
-
authors:
|
12
|
+
authors:
|
8
13
|
- GING - DIT - UPM
|
9
14
|
- CISE - ESPOL
|
10
15
|
autorequire:
|
11
16
|
bindir: bin
|
12
17
|
cert_chain: []
|
13
|
-
|
18
|
+
|
19
|
+
date: 2011-10-04 00:00:00 +02:00
|
14
20
|
default_executable:
|
15
|
-
dependencies:
|
16
|
-
- !ruby/object:Gem::Dependency
|
21
|
+
dependencies:
|
22
|
+
- !ruby/object:Gem::Dependency
|
17
23
|
name: rails
|
18
|
-
|
24
|
+
prerelease: false
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
19
26
|
none: false
|
20
|
-
requirements:
|
21
|
-
- -
|
22
|
-
- !ruby/object:Gem::Version
|
27
|
+
requirements:
|
28
|
+
- - ">="
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
hash: 3
|
31
|
+
segments:
|
32
|
+
- 3
|
33
|
+
- 1
|
34
|
+
- 0
|
23
35
|
version: 3.1.0
|
24
36
|
type: :runtime
|
25
|
-
|
26
|
-
|
27
|
-
- !ruby/object:Gem::Dependency
|
37
|
+
version_requirements: *id001
|
38
|
+
- !ruby/object:Gem::Dependency
|
28
39
|
name: ancestry
|
29
|
-
|
40
|
+
prerelease: false
|
41
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
30
42
|
none: false
|
31
|
-
requirements:
|
43
|
+
requirements:
|
32
44
|
- - ~>
|
33
|
-
- !ruby/object:Gem::Version
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
hash: 25
|
47
|
+
segments:
|
48
|
+
- 1
|
49
|
+
- 2
|
50
|
+
- 3
|
34
51
|
version: 1.2.3
|
35
52
|
type: :runtime
|
36
|
-
|
37
|
-
|
38
|
-
- !ruby/object:Gem::Dependency
|
53
|
+
version_requirements: *id002
|
54
|
+
- !ruby/object:Gem::Dependency
|
39
55
|
name: foreigner
|
40
|
-
|
56
|
+
prerelease: false
|
57
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
41
58
|
none: false
|
42
|
-
requirements:
|
59
|
+
requirements:
|
43
60
|
- - ~>
|
44
|
-
- !ruby/object:Gem::Version
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
hash: 57
|
63
|
+
segments:
|
64
|
+
- 0
|
65
|
+
- 9
|
66
|
+
- 1
|
45
67
|
version: 0.9.1
|
46
68
|
type: :runtime
|
47
|
-
|
48
|
-
|
49
|
-
- !ruby/object:Gem::Dependency
|
69
|
+
version_requirements: *id003
|
70
|
+
- !ruby/object:Gem::Dependency
|
50
71
|
name: devise
|
51
|
-
|
72
|
+
prerelease: false
|
73
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
52
74
|
none: false
|
53
|
-
requirements:
|
75
|
+
requirements:
|
54
76
|
- - ~>
|
55
|
-
- !ruby/object:Gem::Version
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
hash: 13
|
79
|
+
segments:
|
80
|
+
- 1
|
81
|
+
- 4
|
82
|
+
- 5
|
56
83
|
version: 1.4.5
|
57
84
|
type: :runtime
|
58
|
-
|
59
|
-
|
60
|
-
- !ruby/object:Gem::Dependency
|
85
|
+
version_requirements: *id004
|
86
|
+
- !ruby/object:Gem::Dependency
|
61
87
|
name: inherited_resources
|
62
|
-
|
88
|
+
prerelease: false
|
89
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
63
90
|
none: false
|
64
|
-
requirements:
|
91
|
+
requirements:
|
65
92
|
- - ~>
|
66
|
-
- !ruby/object:Gem::Version
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
hash: 27
|
95
|
+
segments:
|
96
|
+
- 1
|
97
|
+
- 3
|
98
|
+
- 0
|
67
99
|
version: 1.3.0
|
68
100
|
type: :runtime
|
69
|
-
|
70
|
-
|
71
|
-
- !ruby/object:Gem::Dependency
|
101
|
+
version_requirements: *id005
|
102
|
+
- !ruby/object:Gem::Dependency
|
72
103
|
name: stringex
|
73
|
-
|
104
|
+
prerelease: false
|
105
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
74
106
|
none: false
|
75
|
-
requirements:
|
107
|
+
requirements:
|
76
108
|
- - ~>
|
77
|
-
- !ruby/object:Gem::Version
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
hash: 27
|
111
|
+
segments:
|
112
|
+
- 1
|
113
|
+
- 3
|
114
|
+
- 0
|
78
115
|
version: 1.3.0
|
79
116
|
type: :runtime
|
80
|
-
|
81
|
-
|
82
|
-
- !ruby/object:Gem::Dependency
|
117
|
+
version_requirements: *id006
|
118
|
+
- !ruby/object:Gem::Dependency
|
83
119
|
name: avatars_for_rails
|
84
|
-
|
120
|
+
prerelease: false
|
121
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
85
122
|
none: false
|
86
|
-
requirements:
|
123
|
+
requirements:
|
87
124
|
- - ~>
|
88
|
-
- !ruby/object:Gem::Version
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
hash: 29
|
127
|
+
segments:
|
128
|
+
- 0
|
129
|
+
- 1
|
130
|
+
- 3
|
89
131
|
version: 0.1.3
|
90
132
|
type: :runtime
|
91
|
-
|
92
|
-
|
93
|
-
- !ruby/object:Gem::Dependency
|
133
|
+
version_requirements: *id007
|
134
|
+
- !ruby/object:Gem::Dependency
|
94
135
|
name: jquery-rails
|
95
|
-
|
136
|
+
prerelease: false
|
137
|
+
requirement: &id008 !ruby/object:Gem::Requirement
|
96
138
|
none: false
|
97
|
-
requirements:
|
139
|
+
requirements:
|
98
140
|
- - ~>
|
99
|
-
- !ruby/object:Gem::Version
|
141
|
+
- !ruby/object:Gem::Version
|
142
|
+
hash: 5
|
143
|
+
segments:
|
144
|
+
- 1
|
145
|
+
- 0
|
146
|
+
- 9
|
100
147
|
version: 1.0.9
|
101
148
|
type: :runtime
|
102
|
-
|
103
|
-
|
104
|
-
- !ruby/object:Gem::Dependency
|
149
|
+
version_requirements: *id008
|
150
|
+
- !ruby/object:Gem::Dependency
|
105
151
|
name: cancan
|
106
|
-
|
152
|
+
prerelease: false
|
153
|
+
requirement: &id009 !ruby/object:Gem::Requirement
|
107
154
|
none: false
|
108
|
-
requirements:
|
155
|
+
requirements:
|
109
156
|
- - ~>
|
110
|
-
- !ruby/object:Gem::Version
|
157
|
+
- !ruby/object:Gem::Version
|
158
|
+
hash: 7
|
159
|
+
segments:
|
160
|
+
- 1
|
161
|
+
- 6
|
162
|
+
- 4
|
111
163
|
version: 1.6.4
|
112
164
|
type: :runtime
|
113
|
-
|
114
|
-
|
115
|
-
- !ruby/object:Gem::Dependency
|
165
|
+
version_requirements: *id009
|
166
|
+
- !ruby/object:Gem::Dependency
|
116
167
|
name: kaminari
|
117
|
-
|
168
|
+
prerelease: false
|
169
|
+
requirement: &id010 !ruby/object:Gem::Requirement
|
118
170
|
none: false
|
119
|
-
requirements:
|
171
|
+
requirements:
|
120
172
|
- - ~>
|
121
|
-
- !ruby/object:Gem::Version
|
173
|
+
- !ruby/object:Gem::Version
|
174
|
+
hash: 39
|
175
|
+
segments:
|
176
|
+
- 0
|
177
|
+
- 12
|
178
|
+
- 4
|
122
179
|
version: 0.12.4
|
123
180
|
type: :runtime
|
124
|
-
|
125
|
-
|
126
|
-
- !ruby/object:Gem::Dependency
|
181
|
+
version_requirements: *id010
|
182
|
+
- !ruby/object:Gem::Dependency
|
127
183
|
name: omniauth
|
128
|
-
|
184
|
+
prerelease: false
|
185
|
+
requirement: &id011 !ruby/object:Gem::Requirement
|
129
186
|
none: false
|
130
|
-
requirements:
|
187
|
+
requirements:
|
131
188
|
- - ~>
|
132
|
-
- !ruby/object:Gem::Version
|
189
|
+
- !ruby/object:Gem::Version
|
190
|
+
hash: 27
|
191
|
+
segments:
|
192
|
+
- 0
|
193
|
+
- 2
|
194
|
+
- 6
|
133
195
|
version: 0.2.6
|
134
196
|
type: :runtime
|
135
|
-
|
136
|
-
|
137
|
-
- !ruby/object:Gem::Dependency
|
197
|
+
version_requirements: *id011
|
198
|
+
- !ruby/object:Gem::Dependency
|
138
199
|
name: oauth-plugin
|
139
|
-
|
200
|
+
prerelease: false
|
201
|
+
requirement: &id012 !ruby/object:Gem::Requirement
|
140
202
|
none: false
|
141
|
-
requirements:
|
203
|
+
requirements:
|
142
204
|
- - ~>
|
143
|
-
- !ruby/object:Gem::Version
|
205
|
+
- !ruby/object:Gem::Version
|
206
|
+
hash: -223651605
|
207
|
+
segments:
|
208
|
+
- 0
|
209
|
+
- 4
|
210
|
+
- 0
|
211
|
+
- pre
|
212
|
+
- 1
|
144
213
|
version: 0.4.0.pre1
|
145
214
|
type: :runtime
|
146
|
-
|
147
|
-
|
148
|
-
- !ruby/object:Gem::Dependency
|
215
|
+
version_requirements: *id012
|
216
|
+
- !ruby/object:Gem::Dependency
|
149
217
|
name: mailboxer
|
150
|
-
|
218
|
+
prerelease: false
|
219
|
+
requirement: &id013 !ruby/object:Gem::Requirement
|
151
220
|
none: false
|
152
|
-
requirements:
|
221
|
+
requirements:
|
153
222
|
- - ~>
|
154
|
-
- !ruby/object:Gem::Version
|
223
|
+
- !ruby/object:Gem::Version
|
224
|
+
hash: 13
|
225
|
+
segments:
|
226
|
+
- 0
|
227
|
+
- 5
|
228
|
+
- 3
|
155
229
|
version: 0.5.3
|
156
230
|
type: :runtime
|
157
|
-
|
158
|
-
|
159
|
-
- !ruby/object:Gem::Dependency
|
231
|
+
version_requirements: *id013
|
232
|
+
- !ruby/object:Gem::Dependency
|
160
233
|
name: acts-as-taggable-on
|
161
|
-
|
234
|
+
prerelease: false
|
235
|
+
requirement: &id014 !ruby/object:Gem::Requirement
|
162
236
|
none: false
|
163
|
-
requirements:
|
237
|
+
requirements:
|
164
238
|
- - ~>
|
165
|
-
- !ruby/object:Gem::Version
|
239
|
+
- !ruby/object:Gem::Version
|
240
|
+
hash: 3
|
241
|
+
segments:
|
242
|
+
- 2
|
243
|
+
- 0
|
244
|
+
- 6
|
166
245
|
version: 2.0.6
|
167
246
|
type: :runtime
|
168
|
-
|
169
|
-
|
170
|
-
- !ruby/object:Gem::Dependency
|
247
|
+
version_requirements: *id014
|
248
|
+
- !ruby/object:Gem::Dependency
|
171
249
|
name: formtastic
|
172
|
-
|
250
|
+
prerelease: false
|
251
|
+
requirement: &id015 !ruby/object:Gem::Requirement
|
173
252
|
none: false
|
174
|
-
requirements:
|
253
|
+
requirements:
|
175
254
|
- - ~>
|
176
|
-
- !ruby/object:Gem::Version
|
255
|
+
- !ruby/object:Gem::Version
|
256
|
+
hash: 25
|
257
|
+
segments:
|
258
|
+
- 1
|
259
|
+
- 2
|
260
|
+
- 3
|
177
261
|
version: 1.2.3
|
178
262
|
type: :runtime
|
179
|
-
|
180
|
-
|
181
|
-
- !ruby/object:Gem::Dependency
|
263
|
+
version_requirements: *id015
|
264
|
+
- !ruby/object:Gem::Dependency
|
182
265
|
name: simple-navigation
|
183
|
-
|
266
|
+
prerelease: false
|
267
|
+
requirement: &id016 !ruby/object:Gem::Requirement
|
184
268
|
none: false
|
185
|
-
requirements:
|
186
|
-
- -
|
187
|
-
- !ruby/object:Gem::Version
|
188
|
-
|
269
|
+
requirements:
|
270
|
+
- - ">="
|
271
|
+
- !ruby/object:Gem::Version
|
272
|
+
hash: 3
|
273
|
+
segments:
|
274
|
+
- 0
|
275
|
+
version: "0"
|
189
276
|
type: :runtime
|
190
|
-
|
191
|
-
|
192
|
-
- !ruby/object:Gem::Dependency
|
277
|
+
version_requirements: *id016
|
278
|
+
- !ruby/object:Gem::Dependency
|
193
279
|
name: resque
|
194
|
-
|
280
|
+
prerelease: false
|
281
|
+
requirement: &id017 !ruby/object:Gem::Requirement
|
195
282
|
none: false
|
196
|
-
requirements:
|
283
|
+
requirements:
|
197
284
|
- - ~>
|
198
|
-
- !ruby/object:Gem::Version
|
285
|
+
- !ruby/object:Gem::Version
|
286
|
+
hash: 81
|
287
|
+
segments:
|
288
|
+
- 1
|
289
|
+
- 17
|
290
|
+
- 1
|
199
291
|
version: 1.17.1
|
200
292
|
type: :runtime
|
201
|
-
|
202
|
-
|
203
|
-
- !ruby/object:Gem::Dependency
|
293
|
+
version_requirements: *id017
|
294
|
+
- !ruby/object:Gem::Dependency
|
204
295
|
name: modernizr-rails
|
205
|
-
|
296
|
+
prerelease: false
|
297
|
+
requirement: &id018 !ruby/object:Gem::Requirement
|
206
298
|
none: false
|
207
|
-
requirements:
|
299
|
+
requirements:
|
208
300
|
- - ~>
|
209
|
-
- !ruby/object:Gem::Version
|
301
|
+
- !ruby/object:Gem::Version
|
302
|
+
hash: 3
|
303
|
+
segments:
|
304
|
+
- 2
|
305
|
+
- 0
|
306
|
+
- 6
|
210
307
|
version: 2.0.6
|
211
308
|
type: :runtime
|
212
|
-
|
213
|
-
|
214
|
-
- !ruby/object:Gem::Dependency
|
309
|
+
version_requirements: *id018
|
310
|
+
- !ruby/object:Gem::Dependency
|
215
311
|
name: thinking-sphinx
|
216
|
-
|
312
|
+
prerelease: false
|
313
|
+
requirement: &id019 !ruby/object:Gem::Requirement
|
217
314
|
none: false
|
218
|
-
requirements:
|
315
|
+
requirements:
|
219
316
|
- - ~>
|
220
|
-
- !ruby/object:Gem::Version
|
317
|
+
- !ruby/object:Gem::Version
|
318
|
+
hash: 1
|
319
|
+
segments:
|
320
|
+
- 2
|
321
|
+
- 0
|
322
|
+
- 7
|
221
323
|
version: 2.0.7
|
222
324
|
type: :runtime
|
223
|
-
|
224
|
-
|
225
|
-
- !ruby/object:Gem::Dependency
|
325
|
+
version_requirements: *id019
|
326
|
+
- !ruby/object:Gem::Dependency
|
226
327
|
name: capybara
|
227
|
-
|
328
|
+
prerelease: false
|
329
|
+
requirement: &id020 !ruby/object:Gem::Requirement
|
228
330
|
none: false
|
229
|
-
requirements:
|
331
|
+
requirements:
|
230
332
|
- - ~>
|
231
|
-
- !ruby/object:Gem::Version
|
333
|
+
- !ruby/object:Gem::Version
|
334
|
+
hash: 1
|
335
|
+
segments:
|
336
|
+
- 0
|
337
|
+
- 3
|
338
|
+
- 9
|
232
339
|
version: 0.3.9
|
233
340
|
type: :development
|
234
|
-
|
235
|
-
|
236
|
-
- !ruby/object:Gem::Dependency
|
341
|
+
version_requirements: *id020
|
342
|
+
- !ruby/object:Gem::Dependency
|
237
343
|
name: sqlite3-ruby
|
238
|
-
|
344
|
+
prerelease: false
|
345
|
+
requirement: &id021 !ruby/object:Gem::Requirement
|
239
346
|
none: false
|
240
|
-
requirements:
|
241
|
-
- -
|
242
|
-
- !ruby/object:Gem::Version
|
243
|
-
|
347
|
+
requirements:
|
348
|
+
- - ">="
|
349
|
+
- !ruby/object:Gem::Version
|
350
|
+
hash: 3
|
351
|
+
segments:
|
352
|
+
- 0
|
353
|
+
version: "0"
|
244
354
|
type: :development
|
355
|
+
version_requirements: *id021
|
356
|
+
- !ruby/object:Gem::Dependency
|
357
|
+
name: ruby-debug
|
245
358
|
prerelease: false
|
246
|
-
|
247
|
-
- !ruby/object:Gem::Dependency
|
248
|
-
name: ruby-debug19
|
249
|
-
requirement: &75543770 !ruby/object:Gem::Requirement
|
359
|
+
requirement: &id022 !ruby/object:Gem::Requirement
|
250
360
|
none: false
|
251
|
-
requirements:
|
252
|
-
- -
|
253
|
-
- !ruby/object:Gem::Version
|
254
|
-
|
361
|
+
requirements:
|
362
|
+
- - ">="
|
363
|
+
- !ruby/object:Gem::Version
|
364
|
+
hash: 3
|
365
|
+
segments:
|
366
|
+
- 0
|
367
|
+
version: "0"
|
255
368
|
type: :development
|
256
|
-
|
257
|
-
|
258
|
-
- !ruby/object:Gem::Dependency
|
369
|
+
version_requirements: *id022
|
370
|
+
- !ruby/object:Gem::Dependency
|
259
371
|
name: rspec-rails
|
260
|
-
|
372
|
+
prerelease: false
|
373
|
+
requirement: &id023 !ruby/object:Gem::Requirement
|
261
374
|
none: false
|
262
|
-
requirements:
|
375
|
+
requirements:
|
263
376
|
- - ~>
|
264
|
-
- !ruby/object:Gem::Version
|
377
|
+
- !ruby/object:Gem::Version
|
378
|
+
hash: 21
|
379
|
+
segments:
|
380
|
+
- 2
|
381
|
+
- 6
|
382
|
+
- 1
|
265
383
|
version: 2.6.1
|
266
384
|
type: :development
|
267
|
-
|
268
|
-
|
269
|
-
- !ruby/object:Gem::Dependency
|
385
|
+
version_requirements: *id023
|
386
|
+
- !ruby/object:Gem::Dependency
|
270
387
|
name: factory_girl
|
271
|
-
|
388
|
+
prerelease: false
|
389
|
+
requirement: &id024 !ruby/object:Gem::Requirement
|
272
390
|
none: false
|
273
|
-
requirements:
|
391
|
+
requirements:
|
274
392
|
- - ~>
|
275
|
-
- !ruby/object:Gem::Version
|
393
|
+
- !ruby/object:Gem::Version
|
394
|
+
hash: 31
|
395
|
+
segments:
|
396
|
+
- 1
|
397
|
+
- 3
|
398
|
+
- 2
|
276
399
|
version: 1.3.2
|
277
400
|
type: :development
|
278
|
-
|
279
|
-
|
280
|
-
- !ruby/object:Gem::Dependency
|
401
|
+
version_requirements: *id024
|
402
|
+
- !ruby/object:Gem::Dependency
|
281
403
|
name: forgery
|
282
|
-
|
404
|
+
prerelease: false
|
405
|
+
requirement: &id025 !ruby/object:Gem::Requirement
|
283
406
|
none: false
|
284
|
-
requirements:
|
407
|
+
requirements:
|
285
408
|
- - ~>
|
286
|
-
- !ruby/object:Gem::Version
|
409
|
+
- !ruby/object:Gem::Version
|
410
|
+
hash: 11
|
411
|
+
segments:
|
412
|
+
- 0
|
413
|
+
- 4
|
414
|
+
- 2
|
287
415
|
version: 0.4.2
|
288
416
|
type: :development
|
289
|
-
|
290
|
-
|
291
|
-
- !ruby/object:Gem::Dependency
|
417
|
+
version_requirements: *id025
|
418
|
+
- !ruby/object:Gem::Dependency
|
292
419
|
name: ci_reporter
|
293
|
-
|
420
|
+
prerelease: false
|
421
|
+
requirement: &id026 !ruby/object:Gem::Requirement
|
294
422
|
none: false
|
295
|
-
requirements:
|
423
|
+
requirements:
|
296
424
|
- - ~>
|
297
|
-
- !ruby/object:Gem::Version
|
425
|
+
- !ruby/object:Gem::Version
|
426
|
+
hash: 7
|
427
|
+
segments:
|
428
|
+
- 1
|
429
|
+
- 6
|
430
|
+
- 4
|
298
431
|
version: 1.6.4
|
299
432
|
type: :development
|
300
|
-
|
301
|
-
|
302
|
-
- !ruby/object:Gem::Dependency
|
433
|
+
version_requirements: *id026
|
434
|
+
- !ruby/object:Gem::Dependency
|
303
435
|
name: nifty-generators
|
304
|
-
|
436
|
+
prerelease: false
|
437
|
+
requirement: &id027 !ruby/object:Gem::Requirement
|
305
438
|
none: false
|
306
|
-
requirements:
|
439
|
+
requirements:
|
307
440
|
- - ~>
|
308
|
-
- !ruby/object:Gem::Version
|
441
|
+
- !ruby/object:Gem::Version
|
442
|
+
hash: 5
|
443
|
+
segments:
|
444
|
+
- 0
|
445
|
+
- 4
|
446
|
+
- 5
|
309
447
|
version: 0.4.5
|
310
448
|
type: :development
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
This gem packages the basic functionality, along with basic actors (user, group)
|
318
|
-
and activity objects (post and comments)'
|
449
|
+
version_requirements: *id027
|
450
|
+
description: |-
|
451
|
+
Social Stream is a Ruby on Rails engine providing your application with social networking features and activity streams.
|
452
|
+
|
453
|
+
This gem packages the basic functionality, along with basic actors (user, group) and activity objects (post and comments)
|
319
454
|
email:
|
320
455
|
executables: []
|
456
|
+
|
321
457
|
extensions: []
|
458
|
+
|
322
459
|
extra_rdoc_files: []
|
323
|
-
|
460
|
+
|
461
|
+
files:
|
324
462
|
- .gitignore
|
325
463
|
- .rspec
|
326
464
|
- .yardopts
|
@@ -913,26 +1051,36 @@ files:
|
|
913
1051
|
has_rdoc: true
|
914
1052
|
homepage: http://social-stream.dit.upm.es/
|
915
1053
|
licenses: []
|
1054
|
+
|
916
1055
|
post_install_message:
|
917
1056
|
rdoc_options: []
|
918
|
-
|
1057
|
+
|
1058
|
+
require_paths:
|
919
1059
|
- lib
|
920
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
1060
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
921
1061
|
none: false
|
922
|
-
requirements:
|
923
|
-
- -
|
924
|
-
- !ruby/object:Gem::Version
|
925
|
-
|
926
|
-
|
1062
|
+
requirements:
|
1063
|
+
- - ">="
|
1064
|
+
- !ruby/object:Gem::Version
|
1065
|
+
hash: 3
|
1066
|
+
segments:
|
1067
|
+
- 0
|
1068
|
+
version: "0"
|
1069
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
927
1070
|
none: false
|
928
|
-
requirements:
|
929
|
-
- -
|
930
|
-
- !ruby/object:Gem::Version
|
931
|
-
|
1071
|
+
requirements:
|
1072
|
+
- - ">="
|
1073
|
+
- !ruby/object:Gem::Version
|
1074
|
+
hash: 3
|
1075
|
+
segments:
|
1076
|
+
- 0
|
1077
|
+
version: "0"
|
932
1078
|
requirements: []
|
1079
|
+
|
933
1080
|
rubyforge_project:
|
934
1081
|
rubygems_version: 1.6.2
|
935
1082
|
signing_key:
|
936
1083
|
specification_version: 3
|
937
1084
|
summary: Basic features for Social Stream, the core for building social network websites
|
938
1085
|
test_files: []
|
1086
|
+
|