minep-request 0.0.10 → 0.0.11
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/minep-request/requests.rb +2 -2
- data/lib/minep-request/version.rb +1 -1
- metadata +1 -1
|
@@ -205,12 +205,12 @@ module Minep
|
|
|
205
205
|
response["status"]
|
|
206
206
|
end
|
|
207
207
|
|
|
208
|
-
def self.shell socket
|
|
208
|
+
def self.shell socket
|
|
209
209
|
args = {
|
|
210
210
|
:command => "",
|
|
211
211
|
:args => []
|
|
212
212
|
}
|
|
213
|
-
ret = Minep.makeMsg("SHELL", args
|
|
213
|
+
ret = Minep.makeMsg("SHELL", args)
|
|
214
214
|
return if ret.nil?
|
|
215
215
|
socket.write ret
|
|
216
216
|
response = readAndParseResponse "SHELL", socket
|