jugyo-termtter 0.3.8 → 0.3.9
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/termtter.rb +2 -2
- metadata +1 -1
data/lib/termtter.rb
CHANGED
@@ -10,7 +10,7 @@ $:.unshift(File.dirname(__FILE__)) unless
|
|
10
10
|
$:.include?(File.dirname(__FILE__)) || $:.include?(File.expand_path(File.dirname(__FILE__)))
|
11
11
|
|
12
12
|
module Termtter
|
13
|
-
VERSION = '0.3.
|
13
|
+
VERSION = '0.3.9'
|
14
14
|
|
15
15
|
class CommandNotFound < StandardError; end
|
16
16
|
|
@@ -66,7 +66,7 @@ module Termtter
|
|
66
66
|
|
67
67
|
def update_friends_timeline
|
68
68
|
uri = "http://twitter.com/statuses/friends_timeline.json"
|
69
|
-
if @since_id
|
69
|
+
if @since_id
|
70
70
|
uri += "?since_id=#{@since_id}"
|
71
71
|
end
|
72
72
|
|