lib/deliver.rb in deliver-1.13.2 vs lib/deliver.rb in deliver-1.13.3
- old
+ new
@@ -21,6 +21,10 @@
class << self
end
Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore
UI = FastlaneCore::UI
+
+ # Constant that captures the root Pathname for the project. Should be used for building paths to assets or other
+ # resources that code needs to locate locally
+ ROOT = Pathname.new(File.expand_path('../..', __FILE__))
end