yammer-client 0.1.5 → 0.1.6
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.tar.gz.sig +0 -0
- data/Gemfile.lock +1 -1
- data/certs/tiabas-public.pem +17 -18
- data/lib/yammer/api.rb +3 -0
- data/lib/yammer/api/autocomplete.rb +0 -0
- data/lib/yammer/api/group.rb +0 -0
- data/lib/yammer/api/group_membership.rb +0 -0
- data/lib/yammer/api/like.rb +43 -0
- data/lib/yammer/api/message.rb +13 -1
- data/lib/yammer/api/open_graph_object.rb +78 -0
- data/lib/yammer/api/subscription.rb +18 -0
- data/lib/yammer/api/thread.rb +0 -0
- data/lib/yammer/api/user.rb +0 -0
- data/lib/yammer/client.rb +3 -0
- data/lib/yammer/pending_attachment.rb +5 -0
- data/lib/yammer/version.rb +1 -1
- data/spec/api/like_spec.rb +32 -0
- data/spec/api/open_graph_object_spec.rb +49 -0
- data/spec/api/subscription_spec.rb +22 -0
- data/yammer.gemspec +1 -1
- metadata +35 -27
- metadata.gz.sig +0 -0
data.tar.gz.sig
CHANGED
Binary file
|
data/Gemfile.lock
CHANGED
data/certs/tiabas-public.pem
CHANGED
@@ -1,21 +1,20 @@
|
|
1
1
|
-----BEGIN CERTIFICATE-----
|
2
|
-
|
2
|
+
MIIDMjCCAhqgAwIBAgIBADANBgkqhkiG9w0BAQUFADA/MREwDwYDVQQDDAh0aWFi
|
3
3
|
YXNuazEVMBMGCgmSJomT8ixkARkWBWdtYWlsMRMwEQYKCZImiZPyLGQBGRYDY29t
|
4
|
-
|
4
|
+
MB4XDTEzMDQyOTA0MTkwMFoXDTE0MDQyOTA0MTkwMFowPzERMA8GA1UEAwwIdGlh
|
5
5
|
YmFzbmsxFTATBgoJkiaJk/IsZAEZFgVnbWFpbDETMBEGCgmSJomT8ixkARkWA2Nv
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
-----END CERTIFICATE-----
|
6
|
+
bTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMWly4vv32/qfYWuiRJq
|
7
|
+
/x9CDRpdQ2JFwRiiKA6hjWjkpvYwgssfAVNJcwYSyVWkvRF8wp3UjpWqq+W3zGwR
|
8
|
+
XHtKysmt8CZl7Y+JdcltSuaRuZljwN37RPnFg7gGHUfhS4klm6s8csvawLzi50eH
|
9
|
+
6M/7AeKmYS7sRFQoVR0tfHxq+e5uqo47Qus+aLNFU/bgYJeAhZlYHeU0ANZIp3ig
|
10
|
+
HRfYE3zz3CA+LffxQ0UXwiySLgUUsdX1Gtv/7AjoLu6v3GS0lbN9o357b0n7fXym
|
11
|
+
A5iMUeygRZryvLab9kz1YuwgOgx6OpyQD8JfO9PZeBKYd9XFlZwp44W7Z1akxcu+
|
12
|
+
+E8CAwEAAaM5MDcwCQYDVR0TBAIwADAdBgNVHQ4EFgQUt6oHkpfViE/jN5InJLzl
|
13
|
+
DUxUNR8wCwYDVR0PBAQDAgSwMA0GCSqGSIb3DQEBBQUAA4IBAQBunWeru+ZC1uVt
|
14
|
+
BZj6230whZIvdvGnvcWW6JGG6JZJljYwOHHnaG+u74qE16Voh3n7rT77obp/Wrmx
|
15
|
+
HUhp4nK+j1AHpdiZman0RxMZzS2fczev9gTyAs/cmaqgVb3YXXniwvZy4P7y07iT
|
16
|
+
MIbAh4p4NK72MJrOsepD3qhOgE23o8dyFB3+RTB0U7yv3ZW1sMNDxkliqCBqcrBF
|
17
|
+
bSEMaRUpbbsivejLXgRsxP5cXYy0Wd9GNSOtQ5932HDEoo0F9nXIMZGQSLqEXz3l
|
18
|
+
B+kZ9/4dAvmKkr2NPSoxBQtO7Rz0HDNLtjMxkXbQUWMDsGnB6Kk1WUBb/w3kQ9Ah
|
19
|
+
JgIHF4cG
|
20
|
+
-----END CERTIFICATE-----
|
data/lib/yammer/api.rb
CHANGED
@@ -5,8 +5,11 @@ require 'yammer/api/message'
|
|
5
5
|
require 'yammer/api/thread'
|
6
6
|
require 'yammer/api/search'
|
7
7
|
require 'yammer/api/topic'
|
8
|
+
require 'yammer/api/like'
|
8
9
|
require 'yammer/api/autocomplete'
|
9
10
|
require 'yammer/api/network'
|
10
11
|
require 'yammer/api/notification'
|
11
12
|
require 'yammer/api/pending_attachment'
|
12
13
|
require 'yammer/api/invitation'
|
14
|
+
require 'yammer/api/subscription'
|
15
|
+
require 'yammer/api/open_graph_object'
|
File without changes
|
data/lib/yammer/api/group.rb
CHANGED
File without changes
|
File without changes
|
@@ -0,0 +1,43 @@
|
|
1
|
+
module Yammer
|
2
|
+
module Api
|
3
|
+
module Like
|
4
|
+
|
5
|
+
# Delivers a ‘like’ action to the activity stream
|
6
|
+
# @see https://developer.yammer.com/
|
7
|
+
# @api_path /api/v1/likes
|
8
|
+
# @rate_limited Yes
|
9
|
+
# @authentication Requires user context
|
10
|
+
# @raise [Yammer::Error::Unauthorized] Error raised when supplied user credentials are not valid.
|
11
|
+
# @return [Yammer::ApiResponse]
|
12
|
+
# @param [Integer] id
|
13
|
+
# @param [String] type
|
14
|
+
def like(type, id)
|
15
|
+
post('/api/v1/likes', :id => id, :type => type)
|
16
|
+
end
|
17
|
+
|
18
|
+
# Unlike
|
19
|
+
# @see https://developer.yammer.com/
|
20
|
+
# @api_path /api/v1/likes
|
21
|
+
# @rate_limited Yes
|
22
|
+
# @authentication Requires user context
|
23
|
+
# @raise [Yammer::Error::Unauthorized] Error raised when supplied user credentials are not valid.
|
24
|
+
# @return [Yammer::ApiResponse]
|
25
|
+
# @param [Integer] id
|
26
|
+
def unlike(id)
|
27
|
+
delete("/api/v1/likes/#{id}")
|
28
|
+
end
|
29
|
+
|
30
|
+
# Used to determine if current user likes ogo
|
31
|
+
# @see https://developer.yammer.com/
|
32
|
+
# @api_path /api/v1/likes
|
33
|
+
# @rate_limited Yes
|
34
|
+
# @authentication Requires user context
|
35
|
+
# @raise [Yammer::Error::Unauthorized] Error raised when supplied user credentials are not valid.
|
36
|
+
# @return [Yammer::ApiResponse]
|
37
|
+
# @param [Integer] id
|
38
|
+
def likes_open_graph_object?(id)
|
39
|
+
get("/api/v1/likes/open_graph_object/#{id}")
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
end
|
data/lib/yammer/api/message.rb
CHANGED
@@ -196,6 +196,18 @@ module Yammer
|
|
196
196
|
get("/api/v1/messages/in_thread/#{id}", opts)
|
197
197
|
end
|
198
198
|
|
199
|
+
# @see https://developer.yammer.com/restapi/#rest-messages
|
200
|
+
# @api_path /api/v1/messages/open_graph_objects
|
201
|
+
# @rate_limited Yes
|
202
|
+
# @authentication Requires user context
|
203
|
+
# @raise [Yammer::Error::Unauthorized] Error raised when supplied user credentials are not valid.
|
204
|
+
# @return [Yammer::ApiResponse]
|
205
|
+
# @param id [Integer] the thread ID
|
206
|
+
# @example Fetch a list of messages in a given thread
|
207
|
+
# msgs = Yammer.messages_for_open_graph_pbject(10)
|
208
|
+
def messages_for_open_graph_object(id)
|
209
|
+
get("/api/v1/messages/messages/open_graph_objects/#{id}")
|
210
|
+
end
|
199
211
|
end
|
200
212
|
end
|
201
|
-
end
|
213
|
+
end
|
@@ -0,0 +1,78 @@
|
|
1
|
+
module Yammer
|
2
|
+
module Api
|
3
|
+
module OpenGraphObject
|
4
|
+
|
5
|
+
# @see https://developer.yammer.com/
|
6
|
+
# @api_path /api/v1/open_graph_objects/
|
7
|
+
# @rate_limited Yes
|
8
|
+
# @authentication Requires user context
|
9
|
+
# @raise [Yammer::Error::Unauthorized] Error raised when supplied user credentials are not valid.
|
10
|
+
# @return [Yammer::ApiResponse]
|
11
|
+
# @param [String] url The URL of the open graph object
|
12
|
+
# @param [Hash] props The properties of this open graph object
|
13
|
+
# @option props [String] :image
|
14
|
+
# @option props [String] :description
|
15
|
+
# @option props [String] :site_name
|
16
|
+
# @option props [String] :title
|
17
|
+
# @option props [String] :media_url
|
18
|
+
# @option props [String] :media_type
|
19
|
+
# @option props [String] :media_width
|
20
|
+
# @option props [String] :media_height
|
21
|
+
# @example Create a new open graph object
|
22
|
+
#
|
23
|
+
# Yammer.create_open_graph_object('http://www.microsoft.com', {
|
24
|
+
# :site_name => 'Microsoft'
|
25
|
+
# :image => 'https://microsoft.com/global/images/test.jpg'
|
26
|
+
# })
|
27
|
+
def create_open_graph_object(url, props={})
|
28
|
+
post("/api/v1/open_graph_objects", { :url => url, :properites => props })
|
29
|
+
end
|
30
|
+
|
31
|
+
# Subscribes the current user to the open graph object with the request id.
|
32
|
+
# @see https://developer.yammer.com/
|
33
|
+
# @api_path /api/v1/open_graph_objects/
|
34
|
+
# @rate_limited Yes
|
35
|
+
# @authentication Requires user context
|
36
|
+
# @raise [Yammer::Error::Unauthorized] Error raised when supplied user credentials are not valid.
|
37
|
+
# @return [Yammer::ApiResponse]
|
38
|
+
# @param [Integer] id The ID of the open graph object
|
39
|
+
# @example Subscribe to open graph object
|
40
|
+
#
|
41
|
+
# => Yammer.follow_open_graph_object(8)
|
42
|
+
def follow_open_graph_object(id)
|
43
|
+
post('/api/v1/subscriptions', :target_id => id, :target_type => 'OpenGraphObject')
|
44
|
+
end
|
45
|
+
|
46
|
+
# Determines if the current user follows an open graph object
|
47
|
+
# @see https://developer.yammer.com/
|
48
|
+
# @api_path /api/v1/open_graph_objects/
|
49
|
+
# @rate_limited Yes
|
50
|
+
# @authentication Requires user context
|
51
|
+
# @raise [Yammer::Error::Unauthorized] Error raised when supplied user credentials are not valid.
|
52
|
+
# @return [Yammer::ApiResponse]
|
53
|
+
# @param [Integer] id The ID of the open graph object
|
54
|
+
# @example Verify to open graph object
|
55
|
+
#
|
56
|
+
# => Yammer.following_open_graph_object?(89)
|
57
|
+
def is_following_open_graph_object?(id)
|
58
|
+
get("/api/v1/subscriptions/to_open_graph_object/#{id}")
|
59
|
+
end
|
60
|
+
|
61
|
+
|
62
|
+
# Returns open graph objects in a user's activity stream
|
63
|
+
# @see https://developer.yammer.com/
|
64
|
+
# @api_path /api/v1/streams/activities
|
65
|
+
# @rate_limited Yes
|
66
|
+
# @authentication Requires user context
|
67
|
+
# @raise [Yammer::Error::Unauthorized] Error raised when supplied user credentials are not valid.
|
68
|
+
# @return [Yammer::ApiResponse]
|
69
|
+
# @param [Integer] id The ID of the users whose stream of open graph objects we want to fetch
|
70
|
+
# @example Get open graph object in a given user's activity stream
|
71
|
+
#
|
72
|
+
# Yammer.get_activity_stream_open_graph_objects?(3)
|
73
|
+
def get_activity_stream_open_graph_objects(id)
|
74
|
+
get("/api/v1/streams/activities", :owner_type => 'open_graph_object', :owner_id => id)
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module Yammer
|
2
|
+
module Api
|
3
|
+
module Subscription
|
4
|
+
|
5
|
+
# @see https://developer.yammer.com/
|
6
|
+
# @api_path /api/v1/subscriptions/
|
7
|
+
# @rate_limited Yes
|
8
|
+
# @authentication Requires user context
|
9
|
+
# @raise [Yammer::Error::Unauthorized] Error raised when supplied user credentials are not valid.
|
10
|
+
# @return [Yammer::ApiResponse]
|
11
|
+
# @param [Integer] id
|
12
|
+
# @param [String] type
|
13
|
+
def create_subscription(type, id)
|
14
|
+
post('/api/v1/subscriptions', :target_id => id, :target_type => type)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
data/lib/yammer/api/thread.rb
CHANGED
File without changes
|
data/lib/yammer/api/user.rb
CHANGED
File without changes
|
data/lib/yammer/client.rb
CHANGED
@@ -14,10 +14,13 @@ module Yammer
|
|
14
14
|
include Yammer::Api::Topic
|
15
15
|
include Yammer::Api::Network
|
16
16
|
include Yammer::Api::Search
|
17
|
+
include Yammer::Api::Like
|
17
18
|
include Yammer::Api::Notification
|
18
19
|
include Yammer::Api::Autocomplete
|
19
20
|
include Yammer::Api::Invitation
|
20
21
|
include Yammer::Api::PendingAttachment
|
22
|
+
include Yammer::Api::Subscription
|
23
|
+
include Yammer::Api::OpenGraphObject
|
21
24
|
|
22
25
|
attr_reader :site_url, :headers, :connection_options
|
23
26
|
|
data/lib/yammer/version.rb
CHANGED
@@ -0,0 +1,32 @@
|
|
1
|
+
require File.expand_path('../../spec_helper', __FILE__)
|
2
|
+
|
3
|
+
describe Yammer::Api::Topic do
|
4
|
+
|
5
|
+
before :all do
|
6
|
+
@client = Yammer::Client.new(
|
7
|
+
:site_url => 'https://www.yammer.com',
|
8
|
+
:client_id => 'PRbTcg9qjgKsp4jjpm1pw',
|
9
|
+
:client_secret => 'Xn7kp7Ly0TCY4GtZWkmSsqGEPg10DmMADyjWkf2U',
|
10
|
+
:access_token => 'TolNOFka9Uls2DxahNi78A'
|
11
|
+
)
|
12
|
+
end
|
13
|
+
|
14
|
+
subject { @client }
|
15
|
+
|
16
|
+
describe '#likes' do
|
17
|
+
it 'should check if user likes open graph object' do
|
18
|
+
subject.should_receive(:get).with('/api/v1/likes/open_graph_object/1')
|
19
|
+
subject.likes_open_graph_object?(1)
|
20
|
+
end
|
21
|
+
|
22
|
+
it 'should like open graph object' do
|
23
|
+
subject.should_receive(:post).with('/api/v1/likes', :id => 1, :type => 'OpenGraphObject')
|
24
|
+
subject.like('OpenGraphObject', 1)
|
25
|
+
end
|
26
|
+
|
27
|
+
it 'should unlike open graph object' do
|
28
|
+
subject.should_receive(:delete).with('/api/v1/likes/1')
|
29
|
+
subject.unlike(1)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
require File.expand_path('../../spec_helper', __FILE__)
|
2
|
+
|
3
|
+
describe Yammer::Api::Search do
|
4
|
+
|
5
|
+
before :all do
|
6
|
+
@client = Yammer::Client.new(
|
7
|
+
:site_url => 'https://www.yammer.com',
|
8
|
+
:client_id => 'PRbTcg9qjgKsp4jjpm1pw',
|
9
|
+
:client_secret => 'Xn7kp7Ly0TCY4GtZWkmSsqGEPg10DmMADyjWkf2U',
|
10
|
+
:access_token => 'TolNOFka9Uls2DxahNi78A'
|
11
|
+
)
|
12
|
+
end
|
13
|
+
|
14
|
+
subject { @client }
|
15
|
+
|
16
|
+
describe '#open graph object' do
|
17
|
+
|
18
|
+
it 'should create open graph object' do
|
19
|
+
ogo_url = 'http://www.example.com'
|
20
|
+
ogo_props = {
|
21
|
+
:site_name => 'Microsoft',
|
22
|
+
:image => 'https://example.com/global/images/test.jpg'
|
23
|
+
}
|
24
|
+
subject.should_receive(:post).with('/api/v1/open_graph_objects', {
|
25
|
+
:url=>"http://www.example.com",
|
26
|
+
:properites => {
|
27
|
+
:site_name => "Microsoft",
|
28
|
+
:image => "https://example.com/global/images/test.jpg"
|
29
|
+
}
|
30
|
+
})
|
31
|
+
subject.create_open_graph_object(ogo_url, ogo_props)
|
32
|
+
end
|
33
|
+
|
34
|
+
it 'should follow open graph object' do
|
35
|
+
subject.should_receive(:post).with('/api/v1/subscriptions', :target_id => 7, :target_type => 'OpenGraphObject')
|
36
|
+
subject.follow_open_graph_object(7)
|
37
|
+
end
|
38
|
+
|
39
|
+
it 'should follow opnen graph object' do
|
40
|
+
subject.should_receive(:get).with('/api/v1/subscriptions/to_open_graph_object/5')
|
41
|
+
subject.is_following_open_graph_object?(5)
|
42
|
+
end
|
43
|
+
|
44
|
+
it 'should fetch open graph objects in user activity stream' do
|
45
|
+
subject.should_receive(:get).with('/api/v1/streams/activities', :owner_type => 'open_graph_object', :owner_id => 4)
|
46
|
+
subject.get_activity_stream_open_graph_objects(4)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
require File.expand_path('../../spec_helper', __FILE__)
|
2
|
+
|
3
|
+
describe Yammer::Api::Search do
|
4
|
+
|
5
|
+
before :all do
|
6
|
+
@client = Yammer::Client.new(
|
7
|
+
:site_url => 'https://www.yammer.com',
|
8
|
+
:client_id => 'PRbTcg9qjgKsp4jjpm1pw',
|
9
|
+
:client_secret => 'Xn7kp7Ly0TCY4GtZWkmSsqGEPg10DmMADyjWkf2U',
|
10
|
+
:access_token => 'TolNOFka9Uls2DxahNi78A'
|
11
|
+
)
|
12
|
+
end
|
13
|
+
|
14
|
+
subject { @client }
|
15
|
+
|
16
|
+
describe '#subscription' do
|
17
|
+
it 'should create new subscription' do
|
18
|
+
subject.should_receive(:post).with('/api/v1/subscriptions', :target_type =>'OpenGraphObject', :target_id => 1)
|
19
|
+
subject.create_subscription('OpenGraphObject', 1)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
data/yammer.gemspec
CHANGED
@@ -6,7 +6,7 @@ Gem::Specification.new do |s|
|
|
6
6
|
s.name = 'yammer-client'
|
7
7
|
s.version = Yammer::Version
|
8
8
|
|
9
|
-
s.date = %q{2013-
|
9
|
+
s.date = %q{2013-05-28}
|
10
10
|
s.summary = "Yammer API Client - beta"
|
11
11
|
s.description = "A Ruby wrapper for accessing Yammer's REST API"
|
12
12
|
s.authors = ["Kevin Mutyaba"]
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: yammer-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,35 +10,33 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain:
|
12
12
|
- !binary |-
|
13
|
-
|
14
|
-
|
13
|
+
LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURNakNDQWhxZ0F3SUJB
|
14
|
+
Z0lCQURBTkJna3Foa2lHOXcwQkFRVUZBREEvTVJFd0R3WURWUVFEREFoMGFX
|
15
15
|
RmkKWVhOdWF6RVZNQk1HQ2dtU0pvbVQ4aXhrQVJrV0JXZHRZV2xzTVJNd0VR
|
16
|
-
|
17
|
-
|
16
|
+
WUtDWkltaVpQeUxHUUJHUllEWTI5dApNQjRYRFRFek1EUXlPVEEwTVRrd01G
|
17
|
+
b1hEVEUwTURReU9UQTBNVGt3TUZvd1B6RVJNQThHQTFVRUF3d0lkR2xoCllt
|
18
18
|
RnpibXN4RlRBVEJnb0praWFKay9Jc1pBRVpGZ1ZuYldGcGJERVRNQkVHQ2dt
|
19
19
|
U0pvbVQ4aXhrQVJrV0EyTnYKYlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFB
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
bTVobEFINWpYVT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=
|
41
|
-
date: 2013-04-29 00:00:00.000000000 Z
|
20
|
+
RGdnRVBBRENDQVFvQ2dnRUJBTVdseTR2djMyL3FmWVd1aVJKcQoveDlDRFJw
|
21
|
+
ZFEySkZ3UmlpS0E2aGpXamtwdll3Z3NzZkFWTkpjd1lTeVZXa3ZSRjh3cDNV
|
22
|
+
anBXcXErVzN6R3dSClhIdEt5c210OENabDdZK0pkY2x0U3VhUnVabGp3TjM3
|
23
|
+
UlBuRmc3Z0dIVWZoUzRrbG02czhjc3Zhd0x6aTUwZUgKNk0vN0FlS21ZUzdz
|
24
|
+
UkZRb1ZSMHRmSHhxK2U1dXFvNDdRdXMrYUxORlUvYmdZSmVBaFpsWUhlVTBB
|
25
|
+
TlpJcDNpZwpIUmZZRTN6ejNDQStMZmZ4UTBVWHdpeVNMZ1VVc2RYMUd0di83
|
26
|
+
QWpvTHU2djNHUzBsYk45bzM1N2IwbjdmWHltCkE1aU1VZXlnUlpyeXZMYWI5
|
27
|
+
a3oxWXV3Z09neDZPcHlRRDhKZk85UFplQktZZDlYRmxad3A0NFc3WjFha3hj
|
28
|
+
dSsKK0U4Q0F3RUFBYU01TURjd0NRWURWUjBUQkFJd0FEQWRCZ05WSFE0RUZn
|
29
|
+
UVV0Nm9Ia3BmVmlFL2pONUluSkx6bApEVXhVTlI4d0N3WURWUjBQQkFRREFn
|
30
|
+
U3dNQTBHQ1NxR1NJYjNEUUVCQlFVQUE0SUJBUUJ1bldlcnUrWkMxdVZ0CkJa
|
31
|
+
ajYyMzB3aFpJdmR2R252Y1dXNkpHRzZKWkpsall3T0hIbmFHK3U3NHFFMTZW
|
32
|
+
b2gzbjdyVDc3b2JwL1dybXgKSFVocDRuSytqMUFIcGRpWm1hbjBSeE1aelMy
|
33
|
+
ZmN6ZXY5Z1R5QXMvY21hcWdWYjNZWFhuaXd2Wnk0UDd5MDdpVApNSWJBaDRw
|
34
|
+
NE5LNzJNSnJPc2VwRDNxaE9nRTIzbzhkeUZCMytSVEIwVTd5djNaVzFzTU5E
|
35
|
+
eGtsaXFDQnFjckJGCmJTRU1hUlVwYmJzaXZlakxYZ1JzeFA1Y1hZeTBXZDlH
|
36
|
+
TlNPdFE1OTMySERFb28wRjluWElNWkdRU0xxRVh6M2wKQitrWjkvNGRBdm1L
|
37
|
+
a3IyTlBTb3hCUXRPN1J6MEhETkx0ak14a1hiUVVXTURzR25CNktrMVdVQmIv
|
38
|
+
dzNrUTlBaApKZ0lIRjRjRwotLS0tLUVORCBDRVJUSUZJQ0FURS0tLS0tCg==
|
39
|
+
date: 2013-05-28 00:00:00.000000000 Z
|
42
40
|
dependencies:
|
43
41
|
- !ruby/object:Gem::Dependency
|
44
42
|
name: oj
|
@@ -192,11 +190,14 @@ files:
|
|
192
190
|
- lib/yammer/api/group.rb
|
193
191
|
- lib/yammer/api/group_membership.rb
|
194
192
|
- lib/yammer/api/invitation.rb
|
193
|
+
- lib/yammer/api/like.rb
|
195
194
|
- lib/yammer/api/message.rb
|
196
195
|
- lib/yammer/api/network.rb
|
197
196
|
- lib/yammer/api/notification.rb
|
197
|
+
- lib/yammer/api/open_graph_object.rb
|
198
198
|
- lib/yammer/api/pending_attachment.rb
|
199
199
|
- lib/yammer/api/search.rb
|
200
|
+
- lib/yammer/api/subscription.rb
|
200
201
|
- lib/yammer/api/thread.rb
|
201
202
|
- lib/yammer/api/topic.rb
|
202
203
|
- lib/yammer/api/user.rb
|
@@ -212,6 +213,7 @@ files:
|
|
212
213
|
- lib/yammer/identity_map.rb
|
213
214
|
- lib/yammer/message.rb
|
214
215
|
- lib/yammer/message_body.rb
|
216
|
+
- lib/yammer/pending_attachment.rb
|
215
217
|
- lib/yammer/thread.rb
|
216
218
|
- lib/yammer/user.rb
|
217
219
|
- lib/yammer/version.rb
|
@@ -219,11 +221,14 @@ files:
|
|
219
221
|
- spec/api/group_membership_spec.rb
|
220
222
|
- spec/api/group_spec.rb
|
221
223
|
- spec/api/invitation_spec.rb
|
224
|
+
- spec/api/like_spec.rb
|
222
225
|
- spec/api/message_spec.rb
|
223
226
|
- spec/api/network_spec.rb
|
224
227
|
- spec/api/notification_spec.rb
|
228
|
+
- spec/api/open_graph_object_spec.rb
|
225
229
|
- spec/api/pending_attachment_spec.rb
|
226
230
|
- spec/api/search_spec.rb
|
231
|
+
- spec/api/subscription_spec.rb
|
227
232
|
- spec/api/thread_spec.rb
|
228
233
|
- spec/api/topic_spec.rb
|
229
234
|
- spec/api/user_spec.rb
|
@@ -281,11 +286,14 @@ test_files:
|
|
281
286
|
- spec/api/group_membership_spec.rb
|
282
287
|
- spec/api/group_spec.rb
|
283
288
|
- spec/api/invitation_spec.rb
|
289
|
+
- spec/api/like_spec.rb
|
284
290
|
- spec/api/message_spec.rb
|
285
291
|
- spec/api/network_spec.rb
|
286
292
|
- spec/api/notification_spec.rb
|
293
|
+
- spec/api/open_graph_object_spec.rb
|
287
294
|
- spec/api/pending_attachment_spec.rb
|
288
295
|
- spec/api/search_spec.rb
|
296
|
+
- spec/api/subscription_spec.rb
|
289
297
|
- spec/api/thread_spec.rb
|
290
298
|
- spec/api/topic_spec.rb
|
291
299
|
- spec/api/user_spec.rb
|
metadata.gz.sig
CHANGED
Binary file
|