fiverr_copy 0.0.7 → 0.0.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/lib/fiverr_copy/client.rb +3 -1
- data/lib/fiverr_copy/version.rb +1 -1
- data/lib/fiverr_copy.rb +5 -6
- metadata +3 -3
data/lib/fiverr_copy/client.rb
CHANGED
@@ -45,8 +45,10 @@ class FiverrCopy::Client
|
|
45
45
|
server = TCPServer.new(port)
|
46
46
|
client_session = nil
|
47
47
|
if !(next_client.nil?)
|
48
|
-
puts "
|
48
|
+
puts "Next: #{next_client}"
|
49
49
|
client_session = TCPSocket.new(next_client, port)
|
50
|
+
else
|
51
|
+
puts "I'm last!"
|
50
52
|
end
|
51
53
|
|
52
54
|
@real_file_name = ""
|
data/lib/fiverr_copy/version.rb
CHANGED
data/lib/fiverr_copy.rb
CHANGED
@@ -4,12 +4,11 @@ require 'fiverr_copy/server'
|
|
4
4
|
require 'fiverr_copy/client'
|
5
5
|
require 'fiverr_copy/recipe'
|
6
6
|
|
7
|
-
require 'net/ssh'
|
8
|
-
require 'socket'
|
9
|
-
require 'tempfile'
|
10
|
-
require 'fileutils'
|
11
|
-
require 'optparse'
|
12
|
-
|
13
7
|
module FiverrCopy
|
8
|
+
require 'netssh'
|
9
|
+
require 'socket'
|
10
|
+
require 'tempfile'
|
11
|
+
require 'fileutils'
|
12
|
+
require 'optparse'
|
14
13
|
# Your code goes here...
|
15
14
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fiverr_copy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 15
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 8
|
10
|
+
version: 0.0.8
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Elad Meidar
|