social_stream 0.10.2 → 0.10.3
Sign up to get free protection for your applications and to get access to all the features.
- data/base/app/assets/images/logos/original/user.png +0 -0
- data/base/app/assets/javascripts/activities.js.erb +17 -5
- data/base/app/assets/stylesheets/activities.css +8 -3
- data/base/app/assets/stylesheets/base.css +5 -25
- data/base/app/assets/stylesheets/header.css +5 -5
- data/base/app/models/actor.rb +26 -8
- data/base/app/views/activities/_new.html.erb +1 -1
- data/base/app/views/comments/_new.html.erb +13 -3
- data/base/app/views/devise/passwords/edit.html.erb +1 -1
- data/base/app/views/layouts/_header.erb +1 -1
- data/base/lib/social_stream/base/version.rb +1 -1
- data/events/app/controllers/events_controller.rb +4 -4
- data/events/lib/social_stream/events/version.rb +1 -1
- data/events/social_stream-events.gemspec +1 -1
- data/lib/social_stream/release.rb +3 -0
- data/lib/social_stream/release/global/release.rb +0 -19
- data/lib/social_stream/version.rb +1 -1
- data/social_stream.gemspec +2 -2
- metadata +154 -77
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/base/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>
|
@@ -29,7 +29,7 @@ class EventsController < InheritedResources::Base
|
|
29
29
|
@events = Event.most(params[:most]).
|
30
30
|
alphabetic.
|
31
31
|
letter(params[:letter]).
|
32
|
-
|
32
|
+
name_search(params[:search]).
|
33
33
|
tagged_with(params[:tag]).
|
34
34
|
page(params[:page]).per(10)
|
35
35
|
end
|
@@ -39,20 +39,20 @@ class EventsController < InheritedResources::Base
|
|
39
39
|
@events = Event.
|
40
40
|
most(params[:most]).
|
41
41
|
alphabetic.letter(params[:letter]).
|
42
|
-
|
42
|
+
name_search(params[:search]).
|
43
43
|
tagged_with(params[:tag]).
|
44
44
|
page(params[:page]).per(10)
|
45
45
|
else
|
46
46
|
@events = Event.
|
47
47
|
live_events().
|
48
48
|
alphabetic.letter(params[:letter]).
|
49
|
-
|
49
|
+
name_search(params[:search]).
|
50
50
|
tagged_with(params[:tag]).
|
51
51
|
page(params[:page]).per(10)
|
52
52
|
#@groups = Group.most(params[:most]).
|
53
53
|
# alphabetic.
|
54
54
|
# letter(params[:letter]).
|
55
|
-
#
|
55
|
+
# name_search(params[:search]).
|
56
56
|
# tagged_with(params[:tag]).
|
57
57
|
# page(params[:page]).per(10)
|
58
58
|
end
|
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
|
|
12
12
|
s.files = `git ls-files`.split("\n")
|
13
13
|
|
14
14
|
# Gem dependencies
|
15
|
-
s.add_runtime_dependency('social_stream-base', '~> 0.9.
|
15
|
+
s.add_runtime_dependency('social_stream-base', '~> 0.9.13')
|
16
16
|
s.add_runtime_dependency('conference_manager-ruby', '~> 0.0.3')
|
17
17
|
|
18
18
|
# Development Gem dependencies
|
@@ -8,25 +8,6 @@ module SocialStream
|
|
8
8
|
|
9
9
|
attr_reader :name, :version
|
10
10
|
|
11
|
-
class << self
|
12
|
-
def create(*args)
|
13
|
-
dependencies = new.dependencies
|
14
|
-
|
15
|
-
components = args.map do |a|
|
16
|
-
name, version = a.split(":")
|
17
|
-
|
18
|
-
if dependencies.include?(name)
|
19
|
-
ComponentRelease.new(name, version).release!
|
20
|
-
else
|
21
|
-
target = name
|
22
|
-
end
|
23
|
-
end
|
24
|
-
|
25
|
-
|
26
|
-
new(target).release!
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
11
|
def initialize(target = nil)
|
31
12
|
@target = target
|
32
13
|
end
|
data/social_stream.gemspec
CHANGED
@@ -11,9 +11,9 @@ 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.9.
|
14
|
+
s.add_runtime_dependency('social_stream-base', '~> 0.9.13')
|
15
15
|
s.add_runtime_dependency('social_stream-documents', '~> 0.2.8')
|
16
|
-
s.add_runtime_dependency('social_stream-events', '~> 0.0.
|
16
|
+
s.add_runtime_dependency('social_stream-events', '~> 0.0.7')
|
17
17
|
|
18
18
|
# Development Gem dependencies
|
19
19
|
#
|
metadata
CHANGED
@@ -1,124 +1,191 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: social_stream
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 49
|
5
5
|
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 10
|
9
|
+
- 3
|
10
|
+
version: 0.10.3
|
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: social_stream-base
|
18
|
-
|
24
|
+
prerelease: false
|
25
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
19
26
|
none: false
|
20
|
-
requirements:
|
27
|
+
requirements:
|
21
28
|
- - ~>
|
22
|
-
- !ruby/object:Gem::Version
|
23
|
-
|
29
|
+
- !ruby/object:Gem::Version
|
30
|
+
hash: 33
|
31
|
+
segments:
|
32
|
+
- 0
|
33
|
+
- 9
|
34
|
+
- 13
|
35
|
+
version: 0.9.13
|
24
36
|
type: :runtime
|
25
|
-
|
26
|
-
|
27
|
-
- !ruby/object:Gem::Dependency
|
37
|
+
version_requirements: *id001
|
38
|
+
- !ruby/object:Gem::Dependency
|
28
39
|
name: social_stream-documents
|
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: 7
|
47
|
+
segments:
|
48
|
+
- 0
|
49
|
+
- 2
|
50
|
+
- 8
|
34
51
|
version: 0.2.8
|
35
52
|
type: :runtime
|
36
|
-
|
37
|
-
|
38
|
-
- !ruby/object:Gem::Dependency
|
53
|
+
version_requirements: *id002
|
54
|
+
- !ruby/object:Gem::Dependency
|
39
55
|
name: social_stream-events
|
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
|
45
|
-
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
hash: 17
|
63
|
+
segments:
|
64
|
+
- 0
|
65
|
+
- 0
|
66
|
+
- 7
|
67
|
+
version: 0.0.7
|
46
68
|
type: :runtime
|
47
|
-
|
48
|
-
|
49
|
-
- !ruby/object:Gem::Dependency
|
69
|
+
version_requirements: *id003
|
70
|
+
- !ruby/object:Gem::Dependency
|
50
71
|
name: capybara
|
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: 1
|
79
|
+
segments:
|
80
|
+
- 0
|
81
|
+
- 3
|
82
|
+
- 9
|
56
83
|
version: 0.3.9
|
57
84
|
type: :development
|
58
|
-
|
59
|
-
|
60
|
-
- !ruby/object:Gem::Dependency
|
85
|
+
version_requirements: *id004
|
86
|
+
- !ruby/object:Gem::Dependency
|
61
87
|
name: sqlite3-ruby
|
62
|
-
|
88
|
+
prerelease: false
|
89
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
63
90
|
none: false
|
64
|
-
requirements:
|
65
|
-
- -
|
66
|
-
- !ruby/object:Gem::Version
|
67
|
-
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
hash: 3
|
95
|
+
segments:
|
96
|
+
- 0
|
97
|
+
version: "0"
|
68
98
|
type: :development
|
99
|
+
version_requirements: *id005
|
100
|
+
- !ruby/object:Gem::Dependency
|
101
|
+
name: ruby-debug
|
69
102
|
prerelease: false
|
70
|
-
|
71
|
-
|
103
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
104
|
+
none: false
|
105
|
+
requirements:
|
106
|
+
- - ~>
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
hash: 49
|
109
|
+
segments:
|
110
|
+
- 0
|
111
|
+
- 10
|
112
|
+
- 3
|
113
|
+
version: 0.10.3
|
114
|
+
type: :development
|
115
|
+
version_requirements: *id006
|
116
|
+
- !ruby/object:Gem::Dependency
|
72
117
|
name: rspec-rails
|
73
|
-
|
118
|
+
prerelease: false
|
119
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
74
120
|
none: false
|
75
|
-
requirements:
|
121
|
+
requirements:
|
76
122
|
- - ~>
|
77
|
-
- !ruby/object:Gem::Version
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
hash: 27
|
125
|
+
segments:
|
126
|
+
- 2
|
127
|
+
- 5
|
128
|
+
- 0
|
78
129
|
version: 2.5.0
|
79
130
|
type: :development
|
80
|
-
|
81
|
-
|
82
|
-
- !ruby/object:Gem::Dependency
|
131
|
+
version_requirements: *id007
|
132
|
+
- !ruby/object:Gem::Dependency
|
83
133
|
name: factory_girl
|
84
|
-
|
134
|
+
prerelease: false
|
135
|
+
requirement: &id008 !ruby/object:Gem::Requirement
|
85
136
|
none: false
|
86
|
-
requirements:
|
137
|
+
requirements:
|
87
138
|
- - ~>
|
88
|
-
- !ruby/object:Gem::Version
|
139
|
+
- !ruby/object:Gem::Version
|
140
|
+
hash: 31
|
141
|
+
segments:
|
142
|
+
- 1
|
143
|
+
- 3
|
144
|
+
- 2
|
89
145
|
version: 1.3.2
|
90
146
|
type: :development
|
91
|
-
|
92
|
-
|
93
|
-
- !ruby/object:Gem::Dependency
|
147
|
+
version_requirements: *id008
|
148
|
+
- !ruby/object:Gem::Dependency
|
94
149
|
name: forgery
|
95
|
-
|
150
|
+
prerelease: false
|
151
|
+
requirement: &id009 !ruby/object:Gem::Requirement
|
96
152
|
none: false
|
97
|
-
requirements:
|
153
|
+
requirements:
|
98
154
|
- - ~>
|
99
|
-
- !ruby/object:Gem::Version
|
155
|
+
- !ruby/object:Gem::Version
|
156
|
+
hash: 31
|
157
|
+
segments:
|
158
|
+
- 0
|
159
|
+
- 3
|
160
|
+
- 6
|
100
161
|
version: 0.3.6
|
101
162
|
type: :development
|
102
|
-
|
103
|
-
|
104
|
-
- !ruby/object:Gem::Dependency
|
163
|
+
version_requirements: *id009
|
164
|
+
- !ruby/object:Gem::Dependency
|
105
165
|
name: ci_reporter
|
106
|
-
|
166
|
+
prerelease: false
|
167
|
+
requirement: &id010 !ruby/object:Gem::Requirement
|
107
168
|
none: false
|
108
|
-
requirements:
|
169
|
+
requirements:
|
109
170
|
- - ~>
|
110
|
-
- !ruby/object:Gem::Version
|
171
|
+
- !ruby/object:Gem::Version
|
172
|
+
hash: 7
|
173
|
+
segments:
|
174
|
+
- 1
|
175
|
+
- 6
|
176
|
+
- 4
|
111
177
|
version: 1.6.4
|
112
178
|
type: :development
|
113
|
-
|
114
|
-
|
115
|
-
description: Ruby on Rails engine supporting social networking features and activity
|
116
|
-
streams.
|
179
|
+
version_requirements: *id010
|
180
|
+
description: Ruby on Rails engine supporting social networking features and activity streams.
|
117
181
|
email:
|
118
182
|
executables: []
|
183
|
+
|
119
184
|
extensions: []
|
185
|
+
|
120
186
|
extra_rdoc_files: []
|
121
|
-
|
187
|
+
|
188
|
+
files:
|
122
189
|
- .gitignore
|
123
190
|
- .rspec
|
124
191
|
- .travis.yml
|
@@ -1043,26 +1110,36 @@ files:
|
|
1043
1110
|
has_rdoc: true
|
1044
1111
|
homepage: http://social-stream.dit.upm.es/
|
1045
1112
|
licenses: []
|
1113
|
+
|
1046
1114
|
post_install_message:
|
1047
1115
|
rdoc_options: []
|
1048
|
-
|
1116
|
+
|
1117
|
+
require_paths:
|
1049
1118
|
- lib
|
1050
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
1119
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
1051
1120
|
none: false
|
1052
|
-
requirements:
|
1053
|
-
- -
|
1054
|
-
- !ruby/object:Gem::Version
|
1055
|
-
|
1056
|
-
|
1121
|
+
requirements:
|
1122
|
+
- - ">="
|
1123
|
+
- !ruby/object:Gem::Version
|
1124
|
+
hash: 3
|
1125
|
+
segments:
|
1126
|
+
- 0
|
1127
|
+
version: "0"
|
1128
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
1057
1129
|
none: false
|
1058
|
-
requirements:
|
1059
|
-
- -
|
1060
|
-
- !ruby/object:Gem::Version
|
1061
|
-
|
1130
|
+
requirements:
|
1131
|
+
- - ">="
|
1132
|
+
- !ruby/object:Gem::Version
|
1133
|
+
hash: 3
|
1134
|
+
segments:
|
1135
|
+
- 0
|
1136
|
+
version: "0"
|
1062
1137
|
requirements: []
|
1138
|
+
|
1063
1139
|
rubyforge_project:
|
1064
1140
|
rubygems_version: 1.6.2
|
1065
1141
|
signing_key:
|
1066
1142
|
specification_version: 3
|
1067
1143
|
summary: Social networking features and activity streams for Ruby on Rails.
|
1068
1144
|
test_files: []
|
1145
|
+
|