jugyo-termtter 0.8.12 → 0.8.13
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/plugin/stdout.rb +1 -1
- data/lib/termtter/client.rb +2 -0
- data/lib/termtter/version.rb +1 -1
- metadata +1 -1
data/lib/plugin/stdout.rb
CHANGED
@@ -8,7 +8,7 @@ configatron.plugins.stdout.set_default(
|
|
8
8
|
[:none, :red, :green, :yellow, :blue, :magenta, :cyan])
|
9
9
|
configatron.plugins.stdout.set_default(
|
10
10
|
:timeline_format,
|
11
|
-
'<90><%=time%></90> <<%=status_color%>><%=
|
11
|
+
'<90><%=time%></90> <<%=status_color%>><%=status%></<%=status_color%>> <90><%=id%></90>')
|
12
12
|
|
13
13
|
$highline = HighLine.new
|
14
14
|
|
data/lib/termtter/client.rb
CHANGED
@@ -227,6 +227,8 @@ module Termtter
|
|
227
227
|
password = ui.ask('your twitter password: ') { |q| q.echo = false }
|
228
228
|
|
229
229
|
File.open(File.expand_path('~/.termtter'), 'w') {|io|
|
230
|
+
io.puts '# -*- coding: utf-8 -*-'
|
231
|
+
|
230
232
|
plugins = Dir.glob(File.dirname(__FILE__) + "/../lib/plugin/*.rb").map {|f|
|
231
233
|
f.match(%r|lib/plugin/(.*?).rb$|)[1]
|
232
234
|
}
|
data/lib/termtter/version.rb
CHANGED