social_stream 2.2.1 → 2.2.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +1 -1
  3. data/base/app/assets/javascripts/social_stream/comment.js +1 -1
  4. data/base/app/assets/javascripts/social_stream/search_header.js +26 -4
  5. data/base/app/assets/stylesheets/social_stream/base/contacts/layouts/_contacts.css.sass +1 -0
  6. data/base/app/assets/stylesheets/social_stream/base/footer/layout/_footer.css.sass +1 -1
  7. data/base/app/assets/stylesheets/social_stream/base/frontpage_devise/_devise.css.sass +5 -3
  8. data/base/app/assets/stylesheets/social_stream/base/frontpage_devise/layout/_devise.css.sass +7 -37
  9. data/base/app/assets/stylesheets/social_stream/base/frontpage_devise/layout/_frontpage.css.sass +4 -2
  10. data/base/app/assets/stylesheets/social_stream/base/frontpage_devise/responsive/_responsive-1200px-min.css.sass +6 -3
  11. data/base/app/assets/stylesheets/social_stream/base/frontpage_devise/responsive/_responsive-767px-max.css.sass +9 -5
  12. data/base/app/assets/stylesheets/social_stream/base/frontpage_devise/responsive/_responsive-768px-979px.css.sass +3 -4
  13. data/base/app/assets/stylesheets/social_stream/base/layouts/_header.css.sass +3 -2
  14. data/base/app/assets/stylesheets/social_stream/base/mixins/_buttons.css.sass +1 -2
  15. data/base/app/controllers/groups_controller.rb +4 -0
  16. data/base/app/controllers/home_controller.rb +15 -0
  17. data/base/app/controllers/search_controller.rb +3 -3
  18. data/base/app/decorators/avatars_controller_decorator.rb +1 -0
  19. data/base/app/overrides/avatars/_crop/add_actor_id.rb +4 -0
  20. data/base/app/overrides/avatars/_form/add_actor_id.rb +4 -0
  21. data/base/app/views/contacts/_new_modal.html.erb +2 -2
  22. data/base/app/views/devise/confirmations/new.html.erb +14 -9
  23. data/base/app/views/devise/passwords/edit.html.erb +23 -26
  24. data/base/app/views/devise/passwords/new.html.erb +7 -3
  25. data/base/app/views/devise/registrations/_edit_user.html.erb +1 -1
  26. data/base/app/views/devise/registrations/new.html.erb +4 -8
  27. data/base/app/views/devise/shared/_links.erb +1 -3
  28. data/base/app/views/groups/_form.html.erb +2 -1
  29. data/base/app/views/layouts/_header_dropdown_menu_sessions.html.erb +1 -1
  30. data/base/app/views/layouts/_header_signed_in.erb +22 -26
  31. data/base/app/views/profiles/_personal_edit.html.erb +2 -2
  32. data/base/config/locales/de.yml +7 -0
  33. data/base/config/locales/devise.de.yml +61 -0
  34. data/base/config/locales/devise.fr.yml +61 -0
  35. data/base/config/locales/devise.hu.yml +60 -0
  36. data/base/config/locales/devise.nl.yml +60 -0
  37. data/base/config/locales/en.yml +5 -1
  38. data/base/config/locales/es.yml +8 -1
  39. data/base/config/locales/fr.yml +7 -0
  40. data/base/config/locales/hu.yml +22 -15
  41. data/base/config/locales/nl.yml +7 -0
  42. data/base/config/locales/pt.yml +7 -0
  43. data/base/config/locales/zh.yml +7 -0
  44. data/base/lib/social_stream/base/autoload.rb +1 -0
  45. data/base/lib/social_stream/base/version.rb +1 -1
  46. data/base/lib/social_stream/controllers/authorship.rb +2 -1
  47. data/base/lib/social_stream/controllers/avatars.rb +14 -0
  48. data/base/lib/social_stream/controllers/helpers.rb +3 -3
  49. data/base/lib/social_stream/controllers/objects.rb +6 -7
  50. data/base/lib/tasks/i18n.rake +148 -0
  51. data/base/social_stream-base.gemspec +2 -1
  52. data/config/locales/en.yml +2 -1
  53. data/config/locales/es.yml +2 -1
  54. data/documents/app/controllers/documents_controller.rb +26 -16
  55. data/documents/app/models/document.rb +4 -3
  56. data/documents/app/models/video.rb +11 -9
  57. data/documents/app/views/audios/_audio_show.html.erb +1 -1
  58. data/documents/app/views/videos/_video_show.html.erb +1 -1
  59. data/documents/lib/social_stream/documents/version.rb +1 -1
  60. data/documents/social_stream-documents.gemspec +2 -1
  61. data/events/lib/social_stream/events/version.rb +1 -1
  62. data/events/social_stream-events.gemspec +2 -1
  63. data/lib/social_stream/version.rb +1 -1
  64. data/linkser/lib/social_stream/linkser/version.rb +1 -1
  65. data/linkser/social_stream-linkser.gemspec +2 -1
  66. data/oauth2_server/app/models/site/client.rb +16 -0
  67. data/oauth2_server/app/views/site/clients/_edit.html.erb +6 -0
  68. data/oauth2_server/app/views/site/clients/_edit_step_2.html.erb +1 -1
  69. data/oauth2_server/app/views/site/clients/_edit_step_3.html.erb +1 -2
  70. data/oauth2_server/app/views/site/clients/_form.html.erb +1 -1
  71. data/oauth2_server/config/locales/en.yml +1 -1
  72. data/oauth2_server/config/locales/es.yml +2 -1
  73. data/oauth2_server/config/locales/zh.yml +1 -0
  74. data/oauth2_server/lib/social_stream/oauth2_server/version.rb +1 -1
  75. data/oauth2_server/social_stream-oauth2_server.gemspec +2 -1
  76. data/ostatus/app/controllers/remote_subjects_controller.rb +1 -1
  77. data/ostatus/lib/social_stream/ostatus/version.rb +1 -1
  78. data/ostatus/social_stream-ostatus.gemspec +2 -1
  79. data/places/social_stream-places.gemspec +1 -0
  80. data/presence/lib/social_stream/presence/version.rb +1 -1
  81. data/presence/social_stream-presence.gemspec +2 -1
  82. data/social_stream.gemspec +7 -7
  83. metadata +25 -18
  84. data/base/app/views/home/index.js.erb +0 -5
  85. data/lib/tasks/i18n.rake +0 -75
@@ -9,6 +9,7 @@ Gem::Specification.new do |s|
9
9
  s.authors = [ "GING - DIT - UPM" ]
10
10
  s.homepage = "http://social-stream.dit.upm.es/"
11
11
  s.files = `git ls-files`.split("\n")
12
+ s.license = 'MIT'
12
13
 
13
14
  # Runtime gem dependencies
14
15
  #
@@ -31,7 +32,7 @@ Gem::Specification.new do |s|
31
32
  # Slug generation
32
33
  s.add_runtime_dependency('stringex', '~> 1.5.1')
33
34
  # Avatar attachments
34
- s.add_runtime_dependency('avatars_for_rails', '~> 1.1.1')
35
+ s.add_runtime_dependency('avatars_for_rails', '~> 1.1.4')
35
36
  # jQuery
36
37
  s.add_runtime_dependency('jquery-rails', '>= 3.0.0')
37
38
  # jQuery UI
@@ -1,3 +1,4 @@
1
+ ---
1
2
  en:
2
3
  post:
3
- input: "Share your thougths, links, videos and more, here!"
4
+ input: Share your thougths, links, videos and more, here!
@@ -1,3 +1,4 @@
1
+ ---
1
2
  es:
2
3
  post:
3
- input: "Comparte tus ideas, enlaces, videos y más, aquí"
4
+ input: Comparte tus ideas, enlaces, videos y más, aquí
@@ -11,13 +11,30 @@ class DocumentsController < ApplicationController
11
11
  render collection if request.xhr?
12
12
  }
13
13
 
14
- format.json { render :json => collection }
14
+ format.json { render :json => collection.to_json(helper: self) }
15
15
  end
16
16
  end
17
-
17
+
18
+ def show
19
+ respond_to do |format|
20
+ format.html {render :action => :show}
21
+ format.json {render :json => resource.to_json(helper: self) }
22
+ format.any {
23
+ path = resource.file.path(params[:style] || params[:format])
24
+
25
+ head(:not_found) and return unless File.exist?(path)
26
+
27
+ send_file path,
28
+ :filename => resource.file_file_name,
29
+ :disposition => "inline",
30
+ :type => request.format
31
+ }
32
+ end
33
+ end
34
+
18
35
  def create
19
36
  super do |format|
20
- format.json { render :json => resource }
37
+ format.json { render :json => resource.to_json(helper: self) }
21
38
  format.js
22
39
  format.all {
23
40
  if resource.new_record?
@@ -43,20 +60,13 @@ class DocumentsController < ApplicationController
43
60
  end
44
61
  end
45
62
 
46
- def show
47
- respond_to do |format|
48
- format.html {render :action => :show}
49
- format.json {render :json => resource }
50
- format.any {
51
- path = resource.file.path(params[:style] || params[:format])
52
-
53
- head(:not_found) and return unless File.exist?(path)
54
-
55
- send_file path,
56
- :filename => resource.file_file_name,
57
- :disposition => "inline",
58
- :type => request.format
63
+ def destroy
64
+ super do |format|
65
+ format.html {
66
+ redirect_to :home
59
67
  }
68
+
69
+ format.js
60
70
  end
61
71
  end
62
72
 
@@ -62,12 +62,13 @@ class Document < ActiveRecord::Base
62
62
  end
63
63
 
64
64
  # JSON, generic version for most documents
65
- def as_json(options = nil)
66
- {:id => id,
65
+ def as_json(options)
66
+ {
67
+ :id => id,
67
68
  :title => title,
68
69
  :description => description,
69
70
  :author => author.name,
70
- :src => file.to_s
71
+ :src => URI.join(options[:helper].root_url, file.url).to_s
71
72
  }
72
73
  end
73
74
 
@@ -16,15 +16,17 @@ class Video < Document
16
16
 
17
17
  # JSON, special edition for video files
18
18
  def as_json(options = nil)
19
- {:id => id,
20
- :title => title,
21
- :description => description,
22
- :author => author.name,
23
- :poster => file(:poster).to_s,
24
- :sources => [ { :type => Mime::WEBM.to_s, :src => file(:webm).to_s },
25
- { :type => Mime::MP4.to_s, :src => file(:mp4).to_s },
26
- { :type => Mime::FLV.to_s, :src => file(:flv).to_s }
27
- ]
19
+ {
20
+ :id => id,
21
+ :title => title,
22
+ :description => description,
23
+ :author => author.name,
24
+ :poster => URI.join(options[:helper].root_url, file.url(:poster)).to_s,
25
+ :sources => [
26
+ { type: Mime::WEBM.to_s, src: URI.join(options[:helper].root_url, file.url(:webm)).to_s },
27
+ { type: Mime::MP4.to_s, src: URI.join(options[:helper].root_url, file.url(:mp4)).to_s },
28
+ { type: Mime::FLV.to_s, src: URI.join(options[:helper].root_url, file.url(:flv)).to_s }
29
+ ]
28
30
  }
29
31
  end
30
32
 
@@ -5,7 +5,7 @@
5
5
  <%= t('audio.processing')%>
6
6
  </div>
7
7
  <% else %>
8
- <%= render partial: 'player',
8
+ <%= render partial: 'audios/player',
9
9
  object: audio,
10
10
  as: :audio %>
11
11
  <% end %>
@@ -4,7 +4,7 @@
4
4
  <%= t('video.processing')%>
5
5
  </div>
6
6
  <% else %>
7
- <%= render partial: 'player',
7
+ <%= render partial: 'videos/player',
8
8
  object: video,
9
9
  as: :video %>
10
10
  <% end %>
@@ -1,5 +1,5 @@
1
1
  module SocialStream
2
2
  module Documents
3
- VERSION = "2.2.0".freeze
3
+ VERSION = "2.2.1".freeze
4
4
  end
5
5
  end
@@ -10,9 +10,10 @@ Gem::Specification.new do |s|
10
10
  s.email = "social-stream@dit.upm.es"
11
11
  s.homepage = "http://github.com/ging/social_stream-documents"
12
12
  s.files = `git ls-files`.split("\n")
13
+ s.license = 'MIT'
13
14
 
14
15
  # Gem dependencies
15
- s.add_runtime_dependency('social_stream-base', '~> 2.2.0')
16
+ s.add_runtime_dependency('social_stream-base', '~> 2.2.2')
16
17
 
17
18
  s.add_runtime_dependency('paperclip','~> 3.5.1')
18
19
  s.add_runtime_dependency('paperclip-ffmpeg', '~> 0.11.0')
@@ -1,5 +1,5 @@
1
1
  module SocialStream
2
2
  module Events
3
- VERSION = "2.2.0".freeze
3
+ VERSION = "2.2.1".freeze
4
4
  end
5
5
  end
@@ -10,9 +10,10 @@ Gem::Specification.new do |s|
10
10
  s.email = "social-stream@dit.upm.es"
11
11
  s.homepage = "http://github.com/ging/social_stream-events"
12
12
  s.files = `git ls-files`.split("\n")
13
+ s.license = 'MIT'
13
14
 
14
15
  # Gem dependencies
15
- s.add_runtime_dependency('social_stream-base', '~> 2.2.0')
16
+ s.add_runtime_dependency('social_stream-base', '~> 2.2.2')
16
17
  s.add_runtime_dependency('rails-scheduler', '~> 0.1.2')
17
18
 
18
19
  # Development Gem dependencies
@@ -1,3 +1,3 @@
1
1
  module SocialStream
2
- VERSION = "2.2.1".freeze
2
+ VERSION = "2.2.2".freeze
3
3
  end
@@ -1,5 +1,5 @@
1
1
  module SocialStream
2
2
  module Linkser
3
- VERSION = "2.2.0".freeze
3
+ VERSION = "2.2.1".freeze
4
4
  end
5
5
  end
@@ -10,9 +10,10 @@ Gem::Specification.new do |s|
10
10
  s.email = "ecasanovac@gmail.com"
11
11
  s.homepage = "http://github.com/ging/social_stream-linkser"
12
12
  s.files = `git ls-files`.split("\n")
13
+ s.license = 'MIT'
13
14
 
14
15
  # Gem dependencies
15
- s.add_runtime_dependency('social_stream-base', '~> 2.2.0')
16
+ s.add_runtime_dependency('social_stream-base', '~> 2.2.2')
16
17
  s.add_runtime_dependency('linkser', '~> 0.0.12')
17
18
  # Development Gem dependencies
18
19
  s.add_development_dependency('sqlite3-ruby')
@@ -1,6 +1,22 @@
1
1
  class Site::Client < Site
2
2
  validates_presence_of :url, :callback_url, :secret
3
3
 
4
+ has_many :oauth2_tokens,
5
+ foreign_key: 'site_id',
6
+ dependent: :destroy
7
+
8
+ has_many :authorization_codes,
9
+ foreign_key: 'site_id',
10
+ class_name: 'Oauth2Token::AuthorizationCode'
11
+
12
+ has_many :access_tokens,
13
+ foreign_key: 'site_id',
14
+ class_name: 'Oauth2Token::AccessToken'
15
+
16
+ has_many :refresh_tokens,
17
+ foreign_key: 'site_id',
18
+ class_name: 'Oauth2Token::RefreshToken'
19
+
4
20
  before_validation :set_secret,
5
21
  on: :create
6
22
 
@@ -7,6 +7,12 @@
7
7
  locals: { subject: resource } %>
8
8
  </section>
9
9
 
10
+ <section class="logo">
11
+ <%= render partial: 'avatars/form',
12
+ object: resource.actor,
13
+ as: :avatarable %>
14
+ </section>
15
+
10
16
  <section class="delete">
11
17
  <%= render partial: 'destroy' %>
12
18
  </section>
@@ -4,7 +4,7 @@
4
4
  <h4>Set the application's logo</h4>
5
5
 
6
6
  <%= render partial: 'avatars/form',
7
- object: resource,
7
+ object: resource.actor,
8
8
  as: :avatarable %>
9
9
 
10
10
  <%= link_to "Next", polymorphic_path(resource, action: 'edit', step: 3), class: "next-step" %>
@@ -6,7 +6,6 @@
6
6
  <section class="site_client_roles">
7
7
  <%= render partial: 'relation/customs/index',
8
8
  locals: { subject: resource } %>
9
+ <%= link_to 'Finish', resource, class: "next-step" %>
9
10
  </section>
10
-
11
- <%= link_to 'Finish', resource, class: "next-step" %>
12
11
  </section>
@@ -33,7 +33,7 @@
33
33
  <%= f.label :callback_url %>
34
34
  <%= f.text_area :callback_url %>
35
35
  </div>
36
+ <%= f.submit :class => "next-step" %>
36
37
  </section>
37
- <%= f.submit :class => "next-step" %>
38
38
 
39
39
  <% end %>
@@ -66,7 +66,7 @@ en:
66
66
  title: Client sites
67
67
  managing: Managing
68
68
  new:
69
- link: Add site
69
+ link: Register site
70
70
  title: Register new client site
71
71
  oauth:
72
72
  credentials: OAuth2 Credentials
@@ -61,8 +61,9 @@ es:
61
61
  go_to_other: Ver tus otros sitios
62
62
  index:
63
63
  title: Sitios
64
+ managing: Managing
64
65
  new:
65
- link: Añadir sitio
66
+ link: Registrar sitio
66
67
  title: Registrar nuevo sitio
67
68
  oauth:
68
69
  credentials: Credenciales OAuth2
@@ -64,6 +64,7 @@ zh:
64
64
  go_to_other: See your other site clients
65
65
  index:
66
66
  title: Client sites
67
+ managing: Managing
67
68
  new:
68
69
  link: Add site
69
70
  title: Register new client site
@@ -1,5 +1,5 @@
1
1
  module SocialStream
2
2
  module Oauth2Server
3
- VERSION = "2.2.1".freeze
3
+ VERSION = "2.2.2".freeze
4
4
  end
5
5
  end
@@ -10,9 +10,10 @@ Gem::Specification.new do |s|
10
10
  s.email = "social-stream@dit.upm.es"
11
11
  s.homepage = "http://github.com/ging/social_stream-oauth2_server"
12
12
  s.files = `git ls-files`.split("\n")
13
+ s.license = 'MIT'
13
14
 
14
15
  # Gem dependencies
15
- s.add_runtime_dependency('social_stream-base', '~> 2.2.1')
16
+ s.add_runtime_dependency('social_stream-base', '~> 2.2.2')
16
17
  s.add_runtime_dependency('rack-oauth2', '~> 1.0.0')
17
18
 
18
19
  s.add_development_dependency('rspec-rails', '~> 2.8.0')
@@ -1,6 +1,6 @@
1
1
  class RemoteSubjectsController < ApplicationController
2
2
  def index
3
- raise ActiveRecord::NotFound if params[:q].blank?
3
+ raise ActiveRecord::RecordNotFound if params[:q].blank?
4
4
 
5
5
  @remote_subject =
6
6
  RemoteSubject.find_or_create_by_webfinger_uri!(params[:q])
@@ -1,5 +1,5 @@
1
1
  module SocialStream
2
2
  module Ostatus
3
- VERSION = "2.2.0".freeze
3
+ VERSION = "2.2.1".freeze
4
4
  end
5
5
  end
@@ -10,9 +10,10 @@ Gem::Specification.new do |s|
10
10
  s.email = "social-stream@dit.upm.es"
11
11
  s.homepage = "http://social-stream.dit.upm.es"
12
12
  s.files = `git ls-files`.split("\n")
13
+ s.license = 'MIT'
13
14
 
14
15
  # Gem dependencies
15
- s.add_runtime_dependency('social_stream-base', '~> 2.2.0')
16
+ s.add_runtime_dependency('social_stream-base', '~> 2.2.2')
16
17
  s.add_runtime_dependency('proudhon','>= 0.3.6')
17
18
  s.add_runtime_dependency('nokogiri','> 1.4.4')
18
19
 
@@ -10,6 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.email = "holacarol@gmail.com"
11
11
  s.homepage = "http://github.com/ging/social_stream-places"
12
12
  s.files = `git ls-files`.split("\n")
13
+ s.license = 'MIT'
13
14
 
14
15
  # Gem dependencies
15
16
  s.add_runtime_dependency('social_stream-base', '~> 2.0.0')
@@ -1,5 +1,5 @@
1
1
  module SocialStream
2
2
  module Presence
3
- VERSION = "2.2.0"
3
+ VERSION = "2.2.1"
4
4
  end
5
5
  end
@@ -10,6 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.homepage = "https://github.com/ging/social_stream/wiki/Getting-Started-With-Social-Stream-Presence"
11
11
  s.summary = "Presence capabilities for Social Stream, the core for building social network websites."
12
12
  s.description = "Social Stream Presence provides everything you need for including presence, instant messaging and video chat services in your social network website, including a complete chat fully integrated with Social Stream."
13
+ s.license = 'MIT'
13
14
 
14
15
  s.rubyforge_project = "social_stream-presence"
15
16
 
@@ -19,7 +20,7 @@ Gem::Specification.new do |s|
19
20
  s.require_paths = ["lib"]
20
21
 
21
22
  # Gem dependencies
22
- s.add_runtime_dependency('social_stream-base', '~> 2.2.0')
23
+ s.add_runtime_dependency('social_stream-base', '~> 2.2.2')
23
24
 
24
25
  s.add_runtime_dependency "xmpp4r"
25
26
 
@@ -11,13 +11,13 @@ Gem::Specification.new do |s|
11
11
  s.license = 'MIT'
12
12
 
13
13
  # Gem dependencies
14
- s.add_runtime_dependency('social_stream-base', '~> 2.2.1')
15
- s.add_runtime_dependency('social_stream-documents', '~> 2.2.0')
16
- s.add_runtime_dependency('social_stream-events', '~> 2.2.0')
17
- s.add_runtime_dependency('social_stream-linkser', '~> 2.2.0')
18
- s.add_runtime_dependency('social_stream-presence', '~> 2.2.0')
19
- s.add_runtime_dependency('social_stream-ostatus', '~> 2.2.0')
20
- s.add_runtime_dependency('social_stream-oauth2_server', '~> 2.2.1')
14
+ s.add_runtime_dependency('social_stream-base', '~> 2.2.2')
15
+ s.add_runtime_dependency('social_stream-documents', '~> 2.2.1')
16
+ s.add_runtime_dependency('social_stream-events', '~> 2.2.1')
17
+ s.add_runtime_dependency('social_stream-linkser', '~> 2.2.1')
18
+ s.add_runtime_dependency('social_stream-presence', '~> 2.2.1')
19
+ s.add_runtime_dependency('social_stream-ostatus', '~> 2.2.1')
20
+ s.add_runtime_dependency('social_stream-oauth2_server', '~> 2.2.2')
21
21
 
22
22
  # Development Gem dependencies
23
23
  #
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: social_stream
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.1
4
+ version: 2.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - GING - DIT - UPM
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-08-13 00:00:00.000000000 Z
11
+ date: 2013-09-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: social_stream-base
@@ -16,98 +16,98 @@ dependencies:
16
16
  requirements:
17
17
  - - ~>
18
18
  - !ruby/object:Gem::Version
19
- version: 2.2.1
19
+ version: 2.2.2
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ~>
25
25
  - !ruby/object:Gem::Version
26
- version: 2.2.1
26
+ version: 2.2.2
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: social_stream-documents
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - ~>
32
32
  - !ruby/object:Gem::Version
33
- version: 2.2.0
33
+ version: 2.2.1
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - ~>
39
39
  - !ruby/object:Gem::Version
40
- version: 2.2.0
40
+ version: 2.2.1
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: social_stream-events
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - ~>
46
46
  - !ruby/object:Gem::Version
47
- version: 2.2.0
47
+ version: 2.2.1
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - ~>
53
53
  - !ruby/object:Gem::Version
54
- version: 2.2.0
54
+ version: 2.2.1
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: social_stream-linkser
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
59
  - - ~>
60
60
  - !ruby/object:Gem::Version
61
- version: 2.2.0
61
+ version: 2.2.1
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - ~>
67
67
  - !ruby/object:Gem::Version
68
- version: 2.2.0
68
+ version: 2.2.1
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: social_stream-presence
71
71
  requirement: !ruby/object:Gem::Requirement
72
72
  requirements:
73
73
  - - ~>
74
74
  - !ruby/object:Gem::Version
75
- version: 2.2.0
75
+ version: 2.2.1
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - ~>
81
81
  - !ruby/object:Gem::Version
82
- version: 2.2.0
82
+ version: 2.2.1
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: social_stream-ostatus
85
85
  requirement: !ruby/object:Gem::Requirement
86
86
  requirements:
87
87
  - - ~>
88
88
  - !ruby/object:Gem::Version
89
- version: 2.2.0
89
+ version: 2.2.1
90
90
  type: :runtime
91
91
  prerelease: false
92
92
  version_requirements: !ruby/object:Gem::Requirement
93
93
  requirements:
94
94
  - - ~>
95
95
  - !ruby/object:Gem::Version
96
- version: 2.2.0
96
+ version: 2.2.1
97
97
  - !ruby/object:Gem::Dependency
98
98
  name: social_stream-oauth2_server
99
99
  requirement: !ruby/object:Gem::Requirement
100
100
  requirements:
101
101
  - - ~>
102
102
  - !ruby/object:Gem::Version
103
- version: 2.2.1
103
+ version: 2.2.2
104
104
  type: :runtime
105
105
  prerelease: false
106
106
  version_requirements: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - ~>
109
109
  - !ruby/object:Gem::Version
110
- version: 2.2.1
110
+ version: 2.2.2
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: capybara
113
113
  requirement: !ruby/object:Gem::Requirement
@@ -488,6 +488,7 @@ files:
488
488
  - base/app/controllers/tags_controller.rb
489
489
  - base/app/controllers/ties_controller.rb
490
490
  - base/app/controllers/users_controller.rb
491
+ - base/app/decorators/avatars_controller_decorator.rb
491
492
  - base/app/helpers/activities_helper.rb
492
493
  - base/app/helpers/activity_actions_helper.rb
493
494
  - base/app/helpers/contacts_helper.rb
@@ -534,6 +535,8 @@ files:
534
535
  - base/app/models/site/current.rb
535
536
  - base/app/models/tie.rb
536
537
  - base/app/models/user.rb
538
+ - base/app/overrides/avatars/_crop/add_actor_id.rb
539
+ - base/app/overrides/avatars/_form/add_actor_id.rb
537
540
  - base/app/views/activities/_actions.html.erb
538
541
  - base/app/views/activities/_activity.html.erb
539
542
  - base/app/views/activities/_audience.html.erb
@@ -639,7 +642,6 @@ files:
639
642
  - base/app/views/groups/show.html.erb
640
643
  - base/app/views/groups/show.js.erb
641
644
  - base/app/views/home/index.html.erb
642
- - base/app/views/home/index.js.erb
643
645
  - base/app/views/invitation_mailer/send_invitation.html.erb
644
646
  - base/app/views/invitation_mailer/send_invitation.text.erb
645
647
  - base/app/views/invitations/_new.html.erb
@@ -771,7 +773,11 @@ files:
771
773
  - base/app/views/users/show.js.erb
772
774
  - base/app/views/users/show.xml.builder
773
775
  - base/config/locales/de.yml
776
+ - base/config/locales/devise.de.yml
774
777
  - base/config/locales/devise.es.yml
778
+ - base/config/locales/devise.fr.yml
779
+ - base/config/locales/devise.hu.yml
780
+ - base/config/locales/devise.nl.yml
775
781
  - base/config/locales/en.yml
776
782
  - base/config/locales/es.yml
777
783
  - base/config/locales/fr.yml
@@ -844,6 +850,7 @@ files:
844
850
  - base/lib/social_stream/base/thinking-sphinx.rb
845
851
  - base/lib/social_stream/base/version.rb
846
852
  - base/lib/social_stream/controllers/authorship.rb
853
+ - base/lib/social_stream/controllers/avatars.rb
847
854
  - base/lib/social_stream/controllers/cancan_devise_integration.rb
848
855
  - base/lib/social_stream/controllers/helpers.rb
849
856
  - base/lib/social_stream/controllers/i18n_integration.rb
@@ -872,6 +879,7 @@ files:
872
879
  - base/lib/social_stream/views/location.rb
873
880
  - base/lib/tasks/attachments.rake
874
881
  - base/lib/tasks/db/populate.rake
882
+ - base/lib/tasks/i18n.rake
875
883
  - base/lib/tasks/workers.rake
876
884
  - base/lib/thinking-sphinx/social_stream.rb
877
885
  - base/social_stream-base.gemspec
@@ -1231,7 +1239,6 @@ files:
1231
1239
  - lib/social_stream/release/global/version_file.rb
1232
1240
  - lib/social_stream/release/kernel.rb
1233
1241
  - lib/social_stream/version.rb
1234
- - lib/tasks/i18n.rake
1235
1242
  - lib/tasks/migrations.rake
1236
1243
  - linkser/.gitignore
1237
1244
  - linkser/.rspec