捆绑包安装将无法进行:Bundler :: HTTPError无法从rubygems.org获取规范

时间:2019-12-18 11:57:54

标签: ruby windows bundle

我正在尝试在代理后面的VM上运行describe('loginSuccessEpic', () => { it('send correct actions when success', done => { const action$ = ActionsObservable.of({ type: 'auth/LOG_IN', payload: { email: 'ricardo@rbargux.com', password: 'xxxxx', }, }); const state$ = { value: fromJS({ app: { baseUrl: 'http://0.0.0.0:3000' }, }), }; const expectedOutputActions = [ { type: 'ui/HIDE_LOADING' }, { type: 'auth/SET_AUTH_RESPONSE', payload: 'Unknow error' }, { type: 'auth/AUTH_ERROR', payload: { body: undefined, url: undefined, headers: undefined, method: undefined, }, }, ]; logInEpic(action$, state$) .pipe(toArray()) .subscribe(actualOutputActions => { expect(actualOutputActions).toEqual(expectedOutputActions); done(); }); }); }); 。 我收到以下错误:

bundle install

如果我尝试ping通,则Bundler::HTTPError Could not fetch specs from rubygems.org

但是,我可以浏览该网站,这使我感到奇怪。

关于如何解决此问题的任何建议?

1 个答案:

答案 0 :(得分:1)

您的浏览器可能具有自己的代理设置。

也许您应该设置HTTP_PROXY/HTTPS_PROXY环境变量。

请参见https://stackoverflow.com/a/4496648