Closed jtreanor closed 4 years ago
I have resolved the conflicts with master. It would be great to get some thoughts on this.
I'm wondering if it makes sense to display differences between the Podfile
and Podfile.lock
the same as the manifest differences are already displayed. For example, if you add a pod "Foo" to the Podfile
and run pod check
, would you expect it to tell you "Foo will be installed"? Likewise with changed and removed pods.
Currently, if changes are made to a
Podfile
andpod check
is run, it passes and says there is nothing to install. I think it would be better ifpod check
could also detect changes to thePodfile
.I have added a small check to verify if
Podfile
andPodfile.lock
match. This makes it more similar to howbundle check
works.Do you have thoughts on this? Let me know if there are changes you think I should make.