showterm 0.2.4 → 0.2.5
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/lib/showterm.rb +1 -2
- data/showterm.gemspec +1 -1
- metadata +1 -1
data/lib/showterm.rb
CHANGED
|
@@ -20,7 +20,7 @@ module Showterm
|
|
|
20
20
|
puts 'showterm recording, exit when done'
|
|
21
21
|
ret = record_with_ttyrec(*cmd)
|
|
22
22
|
end
|
|
23
|
-
puts 'showterm recording finished'
|
|
23
|
+
puts 'showterm recording finished, uploading...'
|
|
24
24
|
|
|
25
25
|
ret
|
|
26
26
|
end
|
|
@@ -39,7 +39,6 @@ module Showterm
|
|
|
39
39
|
# @param [String] timingfile The timings
|
|
40
40
|
# @param [Integer] cols The width of the terminal
|
|
41
41
|
def upload!(scriptfile, timingfile, cols=terminal_width)
|
|
42
|
-
puts 'uploading, please wait.'
|
|
43
42
|
request = Net::HTTP::Post.new("/scripts")
|
|
44
43
|
request.set_form_data(:scriptfile => scriptfile,
|
|
45
44
|
:timingfile => timingfile,
|
data/showterm.gemspec
CHANGED