ios - Getting unexpected error cocoapod install pods -


i had pods working fine until tried install pod , started getting strange error, have done no updates , working until recently.

podfile

platform :ios, '8.0'  target 'wireless' pod 'tapjoysdk', '~> 10.2' pod 'mbprogresshud', '~> 0.9.1' pod 'iqdropdowntextfield', pod 'paypal-ios-sdk', pod 'dlradiobutton' end 

error message getting

syntaxerror - /users/amir/desktop/wireless/podfile:10: syntax error, unexpected tstring_beg, expecting keyword_do or '{' or '(' pod 'paypal-ios-sdk',        ^ /users/amir/desktop/wireless/podfile:10: syntax error, unexpected  ',', ex   pecting keyword_end /library/ruby/gems/2.0.0/gems/cocoapods-core-0.36.3/lib/cocoapods-core/podfile.rb:254:in `eval' /library/ruby/gems/2.0.0/gems/cocoapods-core-0.36.3/lib/cocoapods-core/podfile.rb:254:in `block in from_ruby' /library/ruby/gems/2.0.0/gems/cocoapods-core-0.36.3/lib/cocoapods-core/podfile.rb:51:in `instance_eval' /library/ruby/gems/2.0.0/gems/cocoapods-core-0.36.3/lib/cocoapods-core/podfile.rb:51:in `initialize' /library/ruby/gems/2.0.0/gems/cocoapods-core-0.36.3/lib/cocoapods-core/podfile.rb:251:in `new' /library/ruby/gems/2.0.0/gems/cocoapods-core-0.36.3/lib/cocoapods-core/podfile.rb:251:in `from_ruby' /library/ruby/gems/2.0.0/gems/cocoapods-core-0.36.3/lib/cocoapods-core/podfile.rb:227:in `from_file' /library/ruby/gems/2.0.0/gems/cocoapods-0.36.3/lib/cocoapods/config.rb:176:in `podfile' /library/ruby/gems/2.0.0/gems/cocoapods-0.36.3/lib/cocoapods/command.rb:109:in `verify_podfile_exists!' /library/ruby/gems/2.0.0/gems/cocoapods-0.36.3/lib/cocoapods/command/project.rb:100:in `run' /library/ruby/gems/2.0.0/gems/claide-0.8.1/lib/claide/command.rb:312:in `run' /library/ruby/gems/2.0.0/gems/cocoapods-0.36.3/lib/cocoapods/command.rb:46:in `run' /library/ruby/gems/2.0.0/gems/cocoapods-0.36.3/bin/pod:44:in `<top (required)>' /usr/bin/pod:23:in `load' /usr/bin/pod:23:in `<main>' 

the error description says gets unexpected , symbol.

change podfile to

platform :ios, '8.0'  target 'wireless' pod 'tapjoysdk', '~> 10.2' pod 'mbprogresshud', '~> 0.9.1' pod 'iqdropdowntextfield' pod 'paypal-ios-sdk' pod 'dlradiobutton' end 

Comments

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -