oauth 和巫术之间的依赖关系

发布于 2024-12-22 20:03:35 字数 406 浏览 1 评论 0原文

如何解决这个依赖问题。 我正在使用魔法进行管理,并且不需要 oauth2(0.4.1)。

Bundler could not find compatible versions for gem "oauth2":
  In Gemfile:
    omniauth-facebook (>= 0) ruby depends on
      oauth2 (~> 0.5.0) ruby

    sorcery (>= 0) ruby depends on
      oauth2 (0.4.1)

这是我的 Gemfile

gem 'sorcery'
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'

How to solve this dependency problem.
I`m using sorcery to administration and I dont need oauth2(0.4.1).

Bundler could not find compatible versions for gem "oauth2":
  In Gemfile:
    omniauth-facebook (>= 0) ruby depends on
      oauth2 (~> 0.5.0) ruby

    sorcery (>= 0) ruby depends on
      oauth2 (0.4.1)

This is my Gemfile

gem 'sorcery'
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只怪假的太真实 2024-12-29 20:03:35

您应该分叉魔法宝石并更改这一行 如下:

gem.add_runtime_dependency 'oauth2', '~> 0.5.0'

然后进行提交,将其推送到 GitHub,然后在您的应用程序中引用它,如下所示:

gem 'sorcery', :git => "git://github.com/regedarek/sorcery.git"

要获得奖励积分,请提交那个补丁作为对原始魔法存储库的拉取请求。

You should fork the sorcery gem and change this line to be this:

gem.add_runtime_dependency 'oauth2', '~> 0.5.0'

Then make a commit, push it to GitHub and then reference it in your application like this:

gem 'sorcery', :git => "git://github.com/regedarek/sorcery.git"

For bonus points, submit that patch as a pull request to the original sorcery repository.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文