paradiso 0.4.1 → 0.4.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.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.1
1
+ 0.4.2
data/lib/paradiso/base.rb CHANGED
@@ -32,7 +32,9 @@ module Paradiso
32
32
  end
33
33
  end
34
34
  else
35
- raise ArgumentError.new "the playlist '#{@options[:path]}' does already exists" if File.exists? @options[:path]
35
+ if not @options[:path].nil? and File.exists? @options[:path]
36
+ raise ArgumentError.new "the playlist '#{@options[:path]}' does already exists"
37
+ end
36
38
  @playlist << Playlist.new(args, @options[:path], @options[:ignore_endings])
37
39
  end
38
40
  end
data/paradiso.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{paradiso}
8
- s.version = "0.4.1"
8
+ s.version = "0.4.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Victor Bergoo"]
12
- s.date = %q{2011-02-26}
12
+ s.date = %q{2011-03-03}
13
13
  s.default_executable = %q{paradiso}
14
14
  s.description = %q{A simplified mplayer command line interface}
15
15
  s.email = %q{victor.bergoo@gmail.com}
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 4
8
- - 1
9
- version: 0.4.1
8
+ - 2
9
+ version: 0.4.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Victor Bergoo
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2011-02-26 00:00:00 +01:00
17
+ date: 2011-03-03 00:00:00 +01:00
18
18
  default_executable: paradiso
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency