rvm + Rails3 + gmaps4rails-acts_as_gmappable
我是一个红宝石导轨之类的菜鸟。抱歉,如果我的问题很愚蠢。
我设置了一个运行 ruby 1.8.7-p334 的 rvm(作为用户)环境。我已经为我的“应用程序”创建了一个 gemset,现在我想在页面上显示地址的地图。 我四处寻找,发现了 gmaps4rails。
我已将“gem 'gmaps4rails'”添加到我的 Gemfile &捆绑安装
我修改了我的模型(添加了所需的列和rake db:migrate)和acts_as_gmappable,我得到未定义的局部变量或方法 `acts_as_gmappable'
如果我添加 require 'gmaps4rails' 我会得到一个没有要加载的文件 - gmaps4rails
大家有什么想法吗?
谢谢。
I am a noob with ruby rails and all. Sorry if my question is dumb.
I set up a environment with rvm (as a user) running ruby 1.8.7-p334. I have created a gemset for my "app" and now I would like to show a map of an address on the page.
I've been looking around and found gmaps4rails.
I've add "gem 'gmaps4rails' "to my Gemfile & bundle install
I modified my model (added the required columns and rake db:migrate) and acts_as_gmappable and I getundefined local variable or method `acts_as_gmappable'
If I add require 'gmaps4rails' I get ano such file to load -- gmaps4rails
Any ideas folks ?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我担心这是我的错:
在与 pow 战斗数小时后: http://pow.cx/
我最终让它工作添加一个
.rvmrc
文件,将 ruby 版本设置为ree
,我忘记将此文件添加到我的 gitignore...好吧,在 0.8.3 中应该没问题,让我知道!
I fear it's my fault:
after hours fighting with pow: http://pow.cx/
I ended up making it work adding a
.rvmrc
file which sets the ruby version toree
and I forgot to add this file to my gitignore...Well, should be ok in 0.8.3, let me know!