I expect this is first grade for most of you guys, but I'm trying to install MagicalRecord via CocoaPods and it's my first time using Cocoa Pods AND Terminal.
I've gotten past having updated Ruby Gems and have installed Cocoa Pods itself, and have navigated (in Terminal) to the root folder of my project (do I assume correctly that this is the folder containing the project in question?). I'm at the point where the instructions on Github say:
The easiest way to integrate MagicalRecord in your project is to use CocoaPods:
Add the following line to your Podfile:
pod "MagicalRecord"
In your project directory, run pod update
You should now be able to add #import to any of your target's source files and begin using MagicalRecord!
Immediate problem(s): I don't know what nor where my Podfile might be. Also, at some point, I thought I saw a mention of the Cocoa Pods "environment," so I'm not even positive I should still be in the Terminal. Does Cocoa Pods have its own UI?
Please help!
EDIT
Thanks to Ckouta's guidance, i've made some progress. However, this is what Terminal is showing me now, and I'm not sure if I was successful or not:
Analyzing dependencies
/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/pathname.rb:422:in `open': No such file or directory - /Users/timjones/.cocoapods/repos (Errno::ENOENT)
from /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/pathname.rb:422:in `foreach'
from /System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/lib/ruby/2.0.0/pathname.rb:422:in `children'
from /Library/Ruby/Gems/2.0.0/gems/cocoapods-0.35.0/lib/cocoapods/sources_manager.rb:63:in `all'
from /Library/Ruby/Gems/2.0.0/gems/cocoapods-0.35.0/lib/cocoapods/user_interface/error_report.rb:130:in `repo_information'
from /Library/Ruby/Gems/2.0.0/gems/cocoapods-0.35.0/lib/cocoapods/user_interface/error_report.rb:34:in `report'
from /Library/Ruby/Gems/2.0.0/gems/cocoapods-0.35.0/lib/cocoapods/command.rb:58: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.35.0/lib/cocoapods/command.rb:45:in `run'
from /Library/Ruby/Gems/2.0.0/gems/cocoapods-0.35.0/bin/pod:43:in `<top (required)>'
from /usr/bin/pod:23:in `load'
from /usr/bin/pod:23:in `<main>'
Tim-Jones-MacBook-Pro:xxxxxxx timjones$
Can someone confirm?