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.
Files changed (4) hide show
  1. data/CHANGELOG +6 -2
  2. data/VERSION +1 -1
  3. data/lib/zypper/utils.rb +0 -3
  4. metadata +3 -3
data/CHANGELOG CHANGED
@@ -1,4 +1,8 @@
1
- 0.0.9 (2012-06-26)
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.1 (2012-06-20)
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.0
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
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zypper
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 0
10
- version: 0.2.0
9
+ - 1
10
+ version: 0.2.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Lukas Ocilka