Advertisement
Guest User

Untitled

a guest
Nov 26th, 2013
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. # encoding utf-8
  2.  
  3. platform :ios, ‘6’
  4.  
  5. pod ‘PKRevealController’, ‘2.0.6’
  6.  
  7. xcodeproj ‘/Users/Matt/Documents/my-file-here_6/my file here.xcodeproj’
  8.  
  9. [!] Invalid `Podfile` file: /Users/Matt/Podfile:5: no .<digit> floating literal anymore; put 0 before dot
  10. pod ‘PKRevealController’, ‘2.0.6’,
  11. ^
  12. /Users/Matt/Podfile:5: syntax error, unexpected tFLOAT, expecting '('
  13. pod ‘PKRevealController’, ‘2.0.6’,
  14. ^. Updating CocoaPods might fix the issue.
  15.  
  16.  
  17.  
  18.  
  19. ---------------------------
  20.  
  21. or (as github recommends: "simply add pod 'PKRevealController' to your Podfile")
  22.  
  23. # encoding utf-8
  24.  
  25. platform :ios, ‘6’
  26.  
  27. pod ‘PKRevealController’
  28.  
  29. xcodeproj ‘/Users/Matt/Documents/my-file-here_6/my file here.xcodeproj’
  30.  
  31. [!] Invalid `Podfile` file: /Users/Matt/Podfile:7: syntax error, unexpected tCONSTANT, expecting keyword_do or '{' or '('
  32. ...ts/my-file-here_6/my file here.xcodeproj’
  33. ... ^. Updating CocoaPods might fix the issue.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement