multiinfo 0.0.8 → 0.0.9
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/VERSION +1 -1
- data/lib/multiinfo/api/executor.rb +5 -3
- data/multiinfo.gemspec +1 -1
- metadata +1 -1
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.9
|
@@ -27,8 +27,10 @@ module MultiInfo
|
|
27
27
|
|
28
28
|
def execute(command_name, parameters={})
|
29
29
|
request_uri = command(command_name, parameters)
|
30
|
-
puts "[debug] Executing command '#{command_name}': #{request_uri}" if @debug
|
31
|
-
[command_name, get_response(request_uri)]
|
30
|
+
puts "[multiinfo debug] Executing command '#{command_name}': #{request_uri}" if @debug
|
31
|
+
ret = [command_name, get_response(request_uri)]
|
32
|
+
puts "[multiinfo debug] Raw response: #{ret[1]}"
|
33
|
+
ret
|
32
34
|
end
|
33
35
|
|
34
36
|
def in_test_mode?
|
@@ -70,4 +72,4 @@ module MultiInfo
|
|
70
72
|
end
|
71
73
|
|
72
74
|
end
|
73
|
-
end
|
75
|
+
end
|
data/multiinfo.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{multiinfo}
|
5
|
-
s.version = "0.0.
|
5
|
+
s.version = "0.0.9"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["\305\201ukasz \305\201uczak", "Piotr Barczuk"]
|