lib/rakemkv/configuration.rb in rakemkv-0.2.0 vs lib/rakemkv/configuration.rb in rakemkv-0.3.0
- old
+ new
@@ -3,18 +3,12 @@
attr_accessor :minimum_title_length
attr_writer :binary, :destination
def binary
- @binary || 'makemkvcon'
+ @binary || "makemkvcon"
end
- def destination
- @destination || Dir.pwd
- end
-
def reset!
self.binary = nil
- self.destination = nil
- self.minimum_title_length = nil
end
end