friendfeed 0.1.7 → 0.1.8

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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.7
1
+ 0.1.8
data/bin/tw2ff CHANGED
@@ -258,7 +258,7 @@ EOF
258
258
 
259
259
  friends = Status('friends').to_set
260
260
 
261
- twitter_client().replies.each { |reply|
261
+ twitter_client().mentions.each { |reply|
262
262
  user = reply.user
263
263
  next if user.protected
264
264
  name = user.screen_name
@@ -299,7 +299,7 @@ EOF
299
299
 
300
300
  items = []
301
301
 
302
- twitter_client().replies.each { |reply|
302
+ twitter_client().mentions.each { |reply|
303
303
  user = reply.user
304
304
  next if !user.protected
305
305
  name = user.screen_name
@@ -20,7 +20,7 @@ module FriendFeed
20
20
  # Unofficial API
21
21
  #
22
22
 
23
- LOGIN_URI = ROOT_URI + "/account/login"
23
+ LOGIN_URI = ROOT_URI + "/account/login?v=2"
24
24
 
25
25
  private
26
26
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: friendfeed
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Akinori MUSHA
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-10-30 00:00:00 +09:00
12
+ date: 2010-01-25 00:00:00 +09:00
13
13
  default_executable: tw2ff
14
14
  dependencies: []
15
15
 
@@ -69,5 +69,5 @@ signing_key:
69
69
  specification_version: 3
70
70
  summary: A Ruby library to provide access to FriendFeed API's
71
71
  test_files:
72
- - test/test_helper.rb
73
72
  - test/friendfeed_test.rb
73
+ - test/test_helper.rb