导轨|安装country_select gem

时间:2010-11-09 22:31:17

标签: ruby-on-rails rubygems github gem

我在rails应用程序中设置gem时遇到问题。我正在做以下事情:

gem 'country_select', :git => 'git://github.com/rails/country_select.git'

尝试使用此处找到的宝石:

https://github.com/rails/country_select

我收到以下错误:

Could not find gem 'country_select (>= 0, runtime)' in git://github.com/rails/country_select.git (at master).
Source does not contain any versions of 'country_select (>= 0, runtime)'

2 个答案:

答案 0 :(得分:30)

我只是forked and gemified这个插件,如果对你有用的话。

# Gemfile
gem "country-select"

答案 1 :(得分:10)

它不是作为宝石安装的,因为它不是宝石,它是一个插件。

以下是Rails的安装方向

<强> Rails3中

rails plugin install https://github.com/rails/country_select.git

<强> Rails2

ruby script/plugin install https://github.com/rails/country_select.git