我使用google-api-client
gem在Google日历中创建事件。
我从谷歌上找到了文档:https://developers.google.com/calendar/quickstart/ruby
所以,当我安装gem时,在命令rails console
之后,我尝试要求libs:
require 'google/api_client',
require 'google/apis',
require 'google/apis/calendar_v3'
在每个require
上,我得到错误:LoadError: cannot load such file
宝石信息:
bundle info google-api-client
google-api-client (0.23.4)
Summary: Client for accessing Google APIs
Homepage: https://github.com/google/google-api-ruby-client
Path: /Users/danielsaifulin/.rvm/gems/ruby-2.4.0-rc1@sortd/gems/google-api-client-0.23.4`
我不知道为什么,但在rails console
中,当我调用require‘google/apis’时,它不起作用,但当我在rails helper中运行某个函数时,它起作用。
所以,问题结束了。