我的每个捆绑安装都遇到了困难。如何解决它

时间:2015-10-07 23:45:19

标签: ruby-on-rails ruby install bundle

通过Gorails指南,我设置了自制软件,rbenv和rails。但是当我与github的其他项目合作时,当我进行捆绑安装时它不起作用。

这是错误,我正在寻找答案,但仍然找不到

/* Section 7 - Media Queries */

/* ----------- iPad 1 and 2 ----------- */
/* Portrait and Landscape */

@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (-webkit-min-device-pixel-ratio: 1) {

    #home {
        background-image: url("../img/manc-skyline-med.png");
    }
}

/* ----------- iPad 3 and 4 ----------- */
/* Portrait and Landscape */
@media only screen 
    and (min-device-width: 768px) 
    and (max-device-width: 1024px) 
    and (-webkit-min-device-pixel-ratio: 2) {

    #home {
        background-image: url("../img/manc-skyline-med.png");
    }
}

@media only screen 
    and (max-device-width: 767px) {

    #home {
        background-image: url("../img/manc-skyline-med.png");
    }
}

由于

1 个答案:

答案 0 :(得分:0)

似乎是重新发生故障,请运行:rbenv rehash

如果有效,see here for why.