jugyo-termtter 0.5.5 → 0.5.6
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/termtter +3 -2
- data/lib/termtter.rb +1 -1
- metadata +1 -1
data/bin/termtter
CHANGED
@@ -25,13 +25,14 @@ else
|
|
25
25
|
io.puts "#plugin '#{p}'"
|
26
26
|
end
|
27
27
|
|
28
|
-
io.puts "configatron.user_name = '
|
29
|
-
io.puts "configatron.password = '
|
28
|
+
io.puts "configatron.user_name = '#{username}'"
|
29
|
+
io.puts "configatron.password = '#{password}'"
|
30
30
|
io.puts
|
31
31
|
io.puts "# vim: set filetype=ruby"
|
32
32
|
}
|
33
33
|
puts "generated: ~/.termtter"
|
34
34
|
puts "enjoy!"
|
35
|
+
load conf_file
|
35
36
|
end
|
36
37
|
|
37
38
|
Termtter::Client.run
|
data/lib/termtter.rb
CHANGED