Commit 36ac64ac authored by Marin Usalj's avatar Marin Usalj

checked for :path and :local. Fixes #971.

parent fe06de42
...@@ -17,7 +17,9 @@ module Pod ...@@ -17,7 +17,9 @@ module Pod
elsif params.key?(:svn) then SvnSource elsif params.key?(:svn) then SvnSource
elsif params.key?(:hg) then MercurialSource elsif params.key?(:hg) then MercurialSource
elsif params.key?(:podspec) then PodspecSource elsif params.key?(:podspec) then PodspecSource
elsif params.key?(:local) then LocalSource elsif params.key?(:local) ||
params.key?(:path) then LocalSource
end end
if klass if klass
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment