match/lib/match/storage/interface.rb in fastlane-2.128.0.beta.20190722200021 vs match/lib/match/storage/interface.rb in fastlane-2.128.0
- old
+ new
@@ -7,9 +7,14 @@
# The working directory in which we download all the profiles
# and decrypt/encrypt them
attr_accessor :working_directory
# To make debugging easier, we have a custom exception here
+ def prefixed_working_directory
+ not_implemented(__method__)
+ end
+
+ # To make debugging easier, we have a custom exception here
def working_directory
if @working_directory.nil?
raise "`working_directory` for the current storage provider is `nil` as the `#download` method was never called"
end
return @working_directory