zypper 0.2.0 → 0.2.1
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/CHANGELOG +6 -2
- data/VERSION +1 -1
- data/lib/zypper/utils.rb +0 -3
- metadata +3 -3
data/CHANGELOG
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
-
0.
|
1
|
+
0.2.1 (2012-06-26)
|
2
|
+
------------------
|
3
|
+
* Debugging output turned off
|
4
|
+
|
5
|
+
0.2.0 (2012-06-26)
|
2
6
|
------------------
|
3
7
|
* Split into smaller one-task libraries
|
4
8
|
* Added plural aliases for for accessing subclasses (patch -> patches,
|
@@ -8,7 +12,7 @@
|
|
8
12
|
* Added testsuites
|
9
13
|
* Packaging into gem
|
10
14
|
|
11
|
-
0.0
|
15
|
+
0.1.0 (2012-06-20)
|
12
16
|
------------------
|
13
17
|
* Initial implementation using POpen4
|
14
18
|
* Added Services and Repositories handling
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.1
|
data/lib/zypper/utils.rb
CHANGED
@@ -177,9 +177,6 @@ module ZypperUtils
|
|
177
177
|
# Runs a command given as argument and returns the full output
|
178
178
|
# Exit status can be acquired using last_exit_status call
|
179
179
|
def run(command, params = {})
|
180
|
-
# FIXME: it's here just for debugging
|
181
|
-
puts "DEBUG: " + command
|
182
|
-
|
183
180
|
cmd_ret = POpen4::popen4(command) do |stdout, stderr, stdin, pid|
|
184
181
|
self.last_message = stdout.read.strip
|
185
182
|
self.last_error_message = stderr.read.strip
|
metadata
CHANGED