我正在尝试在我的Rails应用程序中使用parse-ruby-client gem。但是,我不确定在哪里放置require语句和create语句。
我把
require 'parse-ruby-client'
Parse.create :application_id => "<your_app_id>", # required
:api_key => "<your_api_key>" # required
但是当我打电话给时,在application.rb中
game_score = client.object("GameScore")
我从应用中收到错误消息。我猜这是因为我没有把它放在正确的地方。关于应该放在哪里的任何建议?