使用Yboss gem

时间:2013-07-24 15:18:58

标签: ruby-on-rails ruby

有人能告诉我一个如何在轨道中使用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'

但我得到名字错误

1 个答案:

答案 0 :(得分:1)

  1. 将gem添加到Gemfile
  2. 运行bundle install
  3. configuration放入初始化程序
  4. 运行rails server
  5. 你还有名字错误吗?