Ruby on rails 使用Github源代码安装Rails 4社区引擎

Ruby on rails 使用Github源代码安装Rails 4社区引擎,ruby-on-rails,ruby,ruby-on-rails-4,gem,rubygems,Ruby On Rails,Ruby,Ruby On Rails 4,Gem,Rubygems,我想在我的一个社交网络项目中使用CommunityEngine,我正在Rails 4中使用它,现在在这里查看Rails 4分支的文档: 然后,我按照步骤1将这一行放在我的GEM文件中: gem,:branch=>rails4 另外,关于配置应用程序名称的第2步。。。现在的问题是当我进行捆绑安装时 Fetching gem metadata from https://rubygems.org/......... Resolving dependencies... Could not find g

我想在我的一个社交网络项目中使用CommunityEngine,我正在Rails 4中使用它,现在在这里查看Rails 4分支的文档:

然后,我按照步骤1将这一行放在我的GEM文件中: gem,:branch=>rails4

另外,关于配置应用程序名称的第2步。。。现在的问题是当我进行捆绑安装时

Fetching gem metadata from https://rubygems.org/.........
Resolving dependencies...
Could not find gem 'communityengine (>= 0) ruby' in
https://github.com/bborn/communityengine.git (at rails4).
Source does not contain any versions of 'communityengine (>= 0) ruby'

如何在我的rails 4应用程序中安装communityengine gem?

指向github repo以获取需要执行的gem:

gem 'community_engine', git: 'https://github.com/bborn/communityengine.git', branch: 'rails4'

我已经提交了更改该分支机构文档的请求。

我正要说我已经尝试过了。。但不同的是我使用了gem的“社区引擎”。。现在这个可以工作了,但我只需要将rails指定为4.0.0。。我想知道他们是否可以将其更新为使用Rails 4.0.0及更高版本。。以及gem依赖项。