Getting error while installing library from pod

Viewed 767

I am getting undefined method squish' for #<String:0x00007fd3a494cd00> (NoMethodError) while installing pod using pod install`. Attaching screenshot for this. Please help me.

Click to see image

2 Answers

something wrong in activesupport-6.0.0.rc2/lib/active_support/multibyte/unicode.rb

do the following
gem uninstall activesupport -v 6.0.0.rc2
and then
gem install rails -v 6.1

Can you try uninstall cocoapods and install latest version of cocoapods ?

$ sudo gem uninstall cocoapods

After that run:

pod update

I hope, this will solve your problem

Related