0

有人可以告诉我如何在 Rails 中使用 yboss Gem 的示例吗?我知道如何在 IRB 中运行它,但我不知道如何合并到 Rails 应用程序中

我已经

bundle install

然后我尝试使用(在控制器的 def 索引中)

YBoss::Config.instance.oauth_key = 'your consumer_key here'
YBoss::Config.instance.oauth_secret = 'your consumer_secret here'

但我得到名称错误

4

1 回答 1

1
  1. 将 gem 添加到 Gemfile
  2. bundle install
  3. 配置放入初始化程序
  4. rails server

您仍然收到名称错误吗?

于 2013-07-24T15:39:19.683 回答