AptDownloader 1.0.1 → 1.0.2

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.
@@ -14,12 +14,11 @@ class ThisApplication
14
14
  opts.on("-a", "--architecture ARCH", "Debian architecure to download " +
15
15
  "packages for. Options are:" +
16
16
  "#{AptDownloader::VALID_DEBIAN_ARCHITECTURES.map{|x| "\n" +"\t"*5+"#{x}"} }") do |a|
17
- @architecure = a
17
+ @architecture = a
18
18
  end
19
19
 
20
20
  opts.on("-o", "--output-dir DIR", "Copy all deb files to directory " +
21
21
  "(directory created if needed)") do |dir|
22
- puts dir
23
22
  @output_dir = dir
24
23
  end
25
24
 
@@ -6,7 +6,7 @@ require 'tempfile'
6
6
  require 'fileutils'
7
7
 
8
8
  class AptDownloader
9
- VERSION = '1.0.1'
9
+ VERSION = '1.0.2'
10
10
  VALID_DEBIAN_ARCHITECTURES = %w[alpha amd64 arm armel hppa i386 ia64 mips
11
11
  mipsel powerpc s390 sparc]
12
12
  APT_FS_PATH = "#{Dir::tmpdir}/apt_fs_#{$$}_"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: AptDownloader
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mathew Chasan