这里我有一个红宝石项目补偿动议 我开始关注安装cocoaPods谁知道并花时间编译应用程序它告诉我以下问题=>
Twitter/SHKiOS5Twitter.h: 10:9: fatal error: 'SHKSharer.h' file not found
# import "SHKSharer.h"
Facebook / SHKFacebook.h: 30:9: fatal error: 'SHKSharer.h' file not found
# import "SHKSharer.h"
Twitter / SHKTwitter.m: 31:9: fatal error: 'SHKConfiguration.h' file not found
# import "SHKConfiguration.h"
我不明白为什么因为我按照
的指示行事$ Sudo gem install cocoapods
$ Pod setup
$ Sudo gem install motion-cocoapods
谢谢
答案 0 :(得分:0)
您还需要modify your Rakefile:
在$:.unshift("/Library/RubyMotion/lib")
下方,添加:
require 'rubygems' require 'motion-cocoapods'
然后:
Motion::Project::App.setup do |app| # ... app.pods do pod 'JSONKit' #Name of your pod end end