opensrs-email 0.0.2 → 0.0.3
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.
- checksums.yaml +8 -8
- data/lib/opensrs/email.rb +1 -1
- data/lib/opensrs/email/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
MGMyODI3MjJlN2FmNTQ4Y2RiOTBlN2U1ZGM0ODI4YWQwYmZiYjMwYw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
MTBjZGE2OTEyNTI2OGEwZWQwMThjOTQ1ZGIzOWE3NzRhYTM1YjZiZA==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
ZjI1MjIyNzEzMDlmNTZmYWM4ODcyNGY5Mzg1MGEzMTc0YThmYzg1YTYxZTg4
|
|
10
|
+
NWVmYzQ0NzE1OTJkMTg1YTQzM2JkOTQzMDk5MjFkZGY2MGRkYWVjMjhjMGJi
|
|
11
|
+
NTYzMzRkY2FjYjQ0N2ZiOTFiNGI1YzE2MjIwZWFiZDJiNzVlODQ=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
YjIzMThlYzJjMzA3OWM5NzFmYzQyMDgyNTZjZGU5NjQ1ZmEyM2JlNzYxYjQx
|
|
14
|
+
NTFjY2U2NDVjNjU1MzFmZjJhYWI1NzdlMGE5MDU1NzhmZTlmOWIxNjRkMmIy
|
|
15
|
+
NmIzM2IzZmZiNWFkYmY0ZTQxODRhZmQzZDI5ZTVhZDE4NjljMWE=
|
data/lib/opensrs/email.rb
CHANGED
|
@@ -97,6 +97,7 @@ module Opensrs
|
|
|
97
97
|
WORKGROUP_COMMAND.include?(command))
|
|
98
98
|
raise "Command #{command.to_s} invalid"
|
|
99
99
|
else
|
|
100
|
+
@logger.info("Sending command: #{command.to_s}")
|
|
100
101
|
cmd = make_command_string(command, attributes)
|
|
101
102
|
send_command(cmd)
|
|
102
103
|
receive_response
|
|
@@ -105,7 +106,6 @@ module Opensrs
|
|
|
105
106
|
|
|
106
107
|
def send_command(command)
|
|
107
108
|
if @socket and not @socket.closed?
|
|
108
|
-
@logger.info("Sending command:\n#{command}")
|
|
109
109
|
@socket.write(command)
|
|
110
110
|
end
|
|
111
111
|
end
|