Commit 37de587e authored by Marius Rackwitz's avatar Marius Rackwitz

select! was not part of ruby-1.8.7

parent fada24cc
...@@ -244,7 +244,7 @@ module Pod ...@@ -244,7 +244,7 @@ module Pod
locking_pods = result.podfile_state.unchanged locking_pods = result.podfile_state.unchanged
if update_mode == :selected if update_mode == :selected
# If selected Pods should been updated, filter them out of the list # If selected Pods should been updated, filter them out of the list
locking_pods.select! { |pod| !update[:pods].include?(pod) } locking_pods = locking_pods.select { |pod| !update[:pods].include?(pod) }
end end
locking_pods.map do |pod| locking_pods.map do |pod|
lockfile.dependency_to_lock_pod_named(pod) lockfile.dependency_to_lock_pod_named(pod)
......
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