skip to Main Content

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

3

Answers


  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

    Login or Signup to reply.
  2. 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

    Login or Signup to reply.
  3. I also have this problem, and I fix this problem by changing the pod version to 1.9.3 in Gemfile.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search