草庐IT

php - file_get_contents HTTP 请求失败

全部标签

ruby - gem 安装失败,出现 "Could not find a valid gem ' yaml'"

我正在从一个当前可用的ruby​​程序构建一个gem。它使用jruby1.7.12,除其他外,它执行“require'yaml”。对于gem,我的Gemfile包含:source'https://rubygems.org'gemspec当我运行时gembuildprogram.gemspec这很好用,但是当我运行时geminstallprogram-0.15.01.gem它失败了ERROR:Couldnotfindavalidgem'yaml'(>=0)inanyrepositoryERROR:Possiblealternatives:aml,cyaml,haml,maml,raml没

ruby-on-rails - `require' : No such file to load -- test_helper (LoadError)

当我在生产模式下运行我的Rails应用程序时出现以下错误,但是当我在开发模式下运行我的应用程序时它工作正常。我可以在生产模式下使用任何Gem吗?`require':Nosuchfiletoload--test_helper(LoadError)以下是完整的代码轨迹:/home/nyros/.rvm/gems/ruby-2.2.0@dfl/gems/activesupport-4.0.2/lib/active_support/dependencies.rb:229:in`require':Nosuchfiletoload--test_helper(LoadError)from/home/

ruby-on-rails - (Rails 新手)rails 服务器错误 : cannot load such file -- bootsnap/setup (LoadError)

我已经将我的JS运行时安装为Node,并且我已经更新了bundle并安装了bundle,但我仍然收到此错误:/Users/macbook/Documents/Studies/Coding/the_back_end/the_odin_project/odin_on_rails/hello_app/config/boot.rb:4:in`require':cannotloadsuchfile--bootsnap/setup(LoadError)from/Users/macbook/Documents/Studies/Coding/the_back_end/the_odin_project/

如果进程以参数开始,Ruby readline 会失败

我遇到了最奇怪的问题。下面的代码可以正常工作:require'json'require'net/http'h=Net::HTTP.new("localhost",4567)while(l=gets.chomp!)res=h.post("/api/v1/service/general",l)putsres.bodyend但是,通过从参数获取主机/端口的小修改:require'json'require'net/http'h=Net::HTTP.new(ARGV[0],ARGV[1])while(l=gets.chomp!)res=h.post("/api/v1/service/genera

ruby-on-rails - 将 header 添加到 rspec get

我是rspec的新手-据说!我正在尝试将jwttoken传递给get请求。我看到好几篇帖子都说语法是:获取:端点,参数:{},header:{}这就是我所做的:require'rails_helper'require"rack/test"includeRack::Test::Methodsdefauthenticated_header(user,password)response=AuthenticateUser.call(user,password){"Authorization"=>response.result}endRSpec.describeApi::AlbumsContro

ruby - 在 OSX 10.8.4 上使用无法识别的选项 '-arch' 安装 json-1.8.0 时 make 失败

我正在尝试正确设置我的ruby​​环境,但在尝试bundleinstall我的测试应用程序时不断收到错误。我在尝试bundleinstall时第一次遇到错误:$railsnewapp//[...]runbundleinstallFetchinggemmetadatafromhttps://rubygems.org/..Resolvingdependencies...Usingrake(10.1.0)Usingi18n(0.6.5)Usingmulti_json(1.7.9)Usingactivesupport(3.2.9)Usingbuilder(3.0.4)Usingactivemo

ruby-on-rails - 使用 OpenURI 或 net/http 的 Ruby 代理身份验证 GET/POST

我正在使用ruby​​1.9.3并尝试使用open-uri获取url并尝试使用Net:HTTP发布我正在尝试对两者使用代理身份验证:尝试使用net/http执行POST请求:require'net/http'require'open-uri'http=Net::HTTP.new("google.com",80)headers={'User-Agent'=>'Ruby193'}resp,data=http.post("/","name1=value1&name2=value2",headers)putsdata对于open-uri我无法执行POST我使用:data=open("http:

ruby - 融合表 : Why do I keep getting a "400 Bad Request" error when trying to update a table style via Ruby's RestClient gem

我正在尝试使用RubygemRestClient为我的一个FusionTables更新样式。这是我的代码:require'rest_client'tableId=''styleId=''key=''table_url="https://www.googleapis.com/fusiontables/v1/tables/#{tableId}/styles/#{styleId}?key=#{key}"update='{"polygonOptions":{"strokeColor":"#ffffff"}}'token='STRINGCONTAININGAUTHORIZATIONTOKEN'R

ruby - RSpec:期望引发错误的方法失败

我正在尝试测试在特定条件下是否正确引发错误。在此规范中,出现了错误,但测试仍然失败。我做错了什么?require'spec_helper'describeUSBTeensyRendererdocontext'whenthecorrectUSBportnameisnotpresent'doit'raisesanerroroninstantiation'doexpect(renderer=USBTeensyRenderer.new).toraise_error(USBInitError)endendend以及“bundleexecrspec”的终端输出:Failures:1)USBTeen

Ruby RegEx 问题 text.gsub[^\W-], '' ) 失败

我正在尝试根据我在“RailsWay”中阅读的内容学习Ruby中的RegEx。但是,即使是这个简单的例子也让我感到难过。不知道是不是打错了:text.gsub(/\s/,"-").gsub([^\W-],'').downcase在我看来,这会将所有空格替换为-,然后将字符串以非字母或数字开头且后跟破折号的任何地方替换为“”。但是,使用irb,它首先在^上失败:syntaxerror,unexpected'^',expecting']'如果我取出^,它会在W上再次失败。 最佳答案 >>text="Ilovespaces"=>"Ilov