jxl-muq 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/bin/muq +6 -2
  2. data/muq.gemspec +1 -1
  3. metadata +1 -1
data/bin/muq CHANGED
@@ -59,11 +59,15 @@ Main do
59
59
  end
60
60
 
61
61
  option('tracks') do
62
- description 'Command separated list of track(s) to download.'
62
+ description 'Comma separated list of track(s) to download.'
63
63
  argument :required
64
64
  cast :list_of_integer
65
65
  end
66
66
 
67
+ option('keeptags') do
68
+ description 'Leave the original tags intact.'
69
+ end
70
+
67
71
  argument('dir') do
68
72
  description 'Base directory. A subdirectory is created for every tape.'
69
73
  validate{|dir| File.directory?(dir)}
@@ -113,7 +117,7 @@ Main do
113
117
  :title => song[:title],
114
118
  :album => user,
115
119
  :track=> count }
116
- )
120
+ ) unless @keeptags
117
121
  count += 1
118
122
  end
119
123
  end
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = "muq"
3
- s.version = "0.0.3"
3
+ s.version = "0.0.4"
4
4
  s.summary = "Muxtape.com CLI"
5
5
  s.description = "Command line interface for Muxtape."
6
6
  s.author = "Ron Damen"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jxl-muq
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ron Damen