Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

unable to use cocoapods after updating

I have updates Ruby , Gems and Cocoapods on my mac OSX 10.9.5, after the update I am unable to execute the command

pod install

I'm getting the below error from terminal

/Library/Ruby/Gems/2.0.0/gems/cocoapods-0.34.2/lib/cocoapods/user_interface/error_report.rb:13:in `report': incompatible character encodings: UTF-8 and ASCII-8BIT (Encoding::CompatibilityError)
    from /Library/Ruby/Gems/2.0.0/gems/cocoapods-0.34.2/lib/cocoapods/command.rb:61:in `report_error'
    from /Library/Ruby/Gems/2.0.0/gems/claide-0.7.0/lib/claide/command.rb:300:in `handle_exception'
    from /Library/Ruby/Gems/2.0.0/gems/claide-0.7.0/lib/claide/command.rb:274:in `rescue in run'
    from /Library/Ruby/Gems/2.0.0/gems/claide-0.7.0/lib/claide/command.rb:264:in `run'
    from /Library/Ruby/Gems/2.0.0/gems/cocoapods-0.34.2/lib/cocoapods/command.rb:48:in `run'
    from /Library/Ruby/Gems/2.0.0/gems/cocoapods-0.34.2/bin/pod:33:in `<top (required)>'
    from /usr/bin/pod:23:in `load'
    from /usr/bin/pod:23:in `<main>'

I have created a Podfile with the below content

platform :ios, ‘7.1’

pod 'AFNetworking', '~> 1.3.3’

Cocoapods worked perfectly before the update. any help is greatly appreciated.

like image 528
ahmad Avatar asked Oct 15 '14 13:10

ahmad


2 Answers

This character " ‘ " is incomatible with cocoapods in first line. You should use this instead " ' ". So your podfile should be like this:

platform :ios, '7.1'
pod 'AFNetworking', '~> 2.4'
like image 166
euthimis87 Avatar answered Sep 26 '22 02:09

euthimis87


The problem was the use of incorrect quotes around the iOS version. Make sure all your quotes are ' and not ‘ or ’.

like image 40
Ankish Jain Avatar answered Sep 23 '22 02:09

Ankish Jain