Hoge.xcodeprojのある階層に
Podfileと.Podsディレクトリを作成
Podfileの中身はこんな感じ
xcodeproj './Hoge.xcodeproj'
platform :ios
pod 'AFNetworking'
target :test, exclusive: true do
link_with 'HogeTests'
pod 'OCMock'
pod 'NLTHTTPStubServer'
end
pod install
でHoge.xcworkspaceが出来上がる