When I injected pod install into the console, an error appears (NoMethodError is the undefined `to_ary 'method for # <Pod :: Specification name =" Parse ">)

I try to install pod in my project folder, but these erros continue to appear.

NoMethodError - undefined to_ary method for #

I cannot start an iOS application to try the connection between parsing and my application.

Thanks in advance for your help.

+4
source share
1 answer

, , ruby-2.3.0, . . , , pod install pod update:

  • CocoaPods
gem uninstall cocoapods
  1. ruby-2.2.1:
rvm install 2.2.1
  1. ruby-2.2.1, ruby ​​ ruby-2.3.0:
rvm list
rvm --default use 2.2.1
rvm uninstall ruby-2.3.0
rvm list
rvm use
  1. CocoaPods
gem install cocoapods

.

+1

Source: https://habr.com/ru/post/1625190/


All Articles