social_stream-ostatus 2.0.0.beta2 → 2.0.0.beta3
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.
- checksums.yaml +4 -4
- data/Rakefile +1 -2
- data/config/locales/en.yml +34 -33
- data/config/locales/zh.yml +35 -0
- data/lib/social_stream/ostatus/version.rb +1 -1
- data/social_stream-ostatus.gemspec +1 -1
- metadata +5 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d3d8396b51e1c54294397161fc4f40031bfd981a
|
|
4
|
+
data.tar.gz: cf5978813ff8fe06b6b05a0569f547f2f70bae85
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dfb189a3ceb10cadb0fb30dd49503a8b3589af840a87357cb928b166b37559a8a59f6e3981784775457dcf7849f223f1c9d9b8b27beb87a604a807dedb7f1cba
|
|
7
|
+
data.tar.gz: 0cc4e922ba1d20bd3e462275101ef18651bb5c4c6655ad2b455650862394c3e02f955ba6e4ddde8a2505c29464adb103b72c221d5dfeaa3bf48895dbc0e08fdc
|
data/Rakefile
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# encoding: UTF-8
|
|
1
2
|
require 'bundler/gem_tasks'
|
|
2
3
|
|
|
3
4
|
require 'rdoc/task'
|
|
@@ -16,8 +17,6 @@ Rake::RDocTask.new(:rdoc) do |rdoc|
|
|
|
16
17
|
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
17
18
|
end
|
|
18
19
|
|
|
19
|
-
Bundler::GemHelper.install_tasks
|
|
20
|
-
|
|
21
20
|
# Modify this gem's tags
|
|
22
21
|
class Bundler::GemHelper
|
|
23
22
|
def version_tag
|
data/config/locales/en.yml
CHANGED
|
@@ -1,34 +1,35 @@
|
|
|
1
|
+
---
|
|
1
2
|
en:
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
3
|
+
activity:
|
|
4
|
+
verb:
|
|
5
|
+
follow:
|
|
6
|
+
RemoteSubject:
|
|
7
|
+
title: '%{subject} added %{contact} as contact.'
|
|
8
|
+
message: '%{name} added you as contact.'
|
|
9
|
+
notification:
|
|
10
|
+
subject: '%{name} added you as contact.'
|
|
11
|
+
body: '%{name} added you as contact.'
|
|
12
|
+
like:
|
|
13
|
+
RemoteSubject:
|
|
14
|
+
title: '%{subject} is a fan of %{contact}.'
|
|
15
|
+
message: '%{name} is now your fan.'
|
|
16
|
+
notification:
|
|
17
|
+
subject: '%{name} is now your fan.'
|
|
18
|
+
body: '%{name} is now your fan.'
|
|
19
|
+
make-friend:
|
|
20
|
+
RemoteSubject:
|
|
21
|
+
title: '%{subject} and %{contact} are now connected.'
|
|
22
|
+
message: '%{name} also added you as contact.'
|
|
23
|
+
notification:
|
|
24
|
+
subject: '%{name} also added you as contact.'
|
|
25
|
+
body: '%{name} also added you as contact.'
|
|
26
|
+
post:
|
|
27
|
+
RemoteSubject:
|
|
28
|
+
notification:
|
|
29
|
+
subject: '%{name} has posted something(%{direct_object}) in your wall'
|
|
30
|
+
body: '%{name} has posted something(%{direct_object}) in your wall'
|
|
31
|
+
update:
|
|
32
|
+
RemoteSubject:
|
|
33
|
+
notification:
|
|
34
|
+
subject: '%{name} has updated %{direct_object} in your wall'
|
|
35
|
+
body: '%{name} has updated something(%{direct_object}) in your wall'
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
---
|
|
2
|
+
zh:
|
|
3
|
+
activity:
|
|
4
|
+
verb:
|
|
5
|
+
follow:
|
|
6
|
+
RemoteSubject:
|
|
7
|
+
title: '%{subject} added %{contact} as contact.'
|
|
8
|
+
message: '%{name} added you as contact.'
|
|
9
|
+
notification:
|
|
10
|
+
subject: '%{name} added you as contact.'
|
|
11
|
+
body: '%{name} added you as contact.'
|
|
12
|
+
like:
|
|
13
|
+
RemoteSubject:
|
|
14
|
+
title: '%{subject} is a fan of %{contact}.'
|
|
15
|
+
message: '%{name} is now your fan.'
|
|
16
|
+
notification:
|
|
17
|
+
subject: '%{name} is now your fan.'
|
|
18
|
+
body: '%{name} is now your fan.'
|
|
19
|
+
make-friend:
|
|
20
|
+
RemoteSubject:
|
|
21
|
+
title: '%{subject} and %{contact} are now connected.'
|
|
22
|
+
message: '%{name} also added you as contact.'
|
|
23
|
+
notification:
|
|
24
|
+
subject: '%{name} also added you as contact.'
|
|
25
|
+
body: '%{name} also added you as contact.'
|
|
26
|
+
post:
|
|
27
|
+
RemoteSubject:
|
|
28
|
+
notification:
|
|
29
|
+
subject: '%{name} has posted something(%{direct_object}) in your wall'
|
|
30
|
+
body: '%{name} has posted something(%{direct_object}) in your wall'
|
|
31
|
+
update:
|
|
32
|
+
RemoteSubject:
|
|
33
|
+
notification:
|
|
34
|
+
subject: '%{name} has updated %{direct_object} in your wall'
|
|
35
|
+
body: '%{name} has updated something(%{direct_object}) in your wall'
|
|
@@ -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', '~> 2.0.0.
|
|
15
|
+
s.add_runtime_dependency('social_stream-base', '~> 2.0.0.beta3')
|
|
16
16
|
s.add_runtime_dependency('proudhon','>= 0.3.6')
|
|
17
17
|
s.add_runtime_dependency('nokogiri','> 1.4.4')
|
|
18
18
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: social_stream-ostatus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.0.
|
|
4
|
+
version: 2.0.0.beta3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Antonio Tapiador
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-04-
|
|
12
|
+
date: 2013-04-26 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: social_stream-base
|
|
@@ -17,14 +17,14 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - ~>
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: 2.0.0.
|
|
20
|
+
version: 2.0.0.beta3
|
|
21
21
|
type: :runtime
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
25
|
- - ~>
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: 2.0.0.
|
|
27
|
+
version: 2.0.0.beta3
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: proudhon
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -154,6 +154,7 @@ files:
|
|
|
154
154
|
- app/views/remote_subjects/_show.html.erb
|
|
155
155
|
- app/views/remote_subjects/show.html.erb
|
|
156
156
|
- config/locales/en.yml
|
|
157
|
+
- config/locales/zh.yml
|
|
157
158
|
- config/routes.rb
|
|
158
159
|
- db/migrate/20120905145030_create_social_stream_ostatus.rb
|
|
159
160
|
- lib/generators/social_stream/ostatus/install_generator.rb
|