Commit f6e3c90c authored by Luke Redpath's avatar Luke Redpath

Only the Installer has a #build_specifications method now.

parent 85475bc0
...@@ -87,7 +87,7 @@ module Pod ...@@ -87,7 +87,7 @@ module Pod
# to the spec post install hook. # to the spec post install hook.
target_installers.each do |target_installer| target_installers.each do |target_installer|
target_installer.build_specifications.each { |spec| spec.post_install(target_installer) } build_specifications.each { |spec| spec.post_install(target_installer) }
end end
@podfile.post_install!(self) @podfile.post_install!(self)
...@@ -124,7 +124,7 @@ module Pod ...@@ -124,7 +124,7 @@ module Pod
end end
def dependent_specifications def dependent_specifications
@dependent_specifications ||= Resolver.new(@podfile).resolve @dependent_specifications ||= Resolver.new(@podfile, @sandbox).resolve
end end
def build_specifications def build_specifications
......
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