lib/attachs/processors/base.rb in attachs-4.0.0.4 vs lib/attachs/processors/base.rb in attachs-4.0.0.5

- old
+ new

@@ -1,15 +1,13 @@ module Attachs module Processors class Base + attr_reader :source_path + def initialize(source_path) @source_path = source_path end - - private - - attr_reader :source_path end end end