草庐IT

下载MySQL

全部标签

ruby - 使用 Capybara 下载 CSV

对于rspec测试,我需要下载CSV文件格式的报告并验证给定的信息。当点击一个按钮时,报告从网页生成。浏览器保存对话框打开,提供打开或保存选项。如何使用rspec和Capybara获取要保存到计算机的文件? 最佳答案 我一直在为此使用MiniTest::Spec并使用webkit-driver完成它,但它应该毫无问题地转换为RSpec,因为它基本上只是capybara的功能:scenario"downloadoverview"dowithin"aside#actions"doclick_link"Downloadoverview"e

ruby-on-rails - 如何在 Capybara 和 RSpec 中测试 CSV 文件下载?

Controller中的内容如下:respond_todo|format|format.csv{send_dataas_csv,type:'text/csv'}end在规范中:click_link'DownloadCSV'page.driver.browser.switch_to.alert.acceptexpect(page).tohave_contentcsv_data但这行不通:Failure/Error:page.driver.browser.switch_to.alert.acceptSelenium::WebDriver::Error::NoAlertPresentErro

Ruby gem mysql2 安装错误

我在Windows7中安装了Ruby版本ruby​​1.9.2p0(2010-08-18)[i386-mingw32]。和gem版本1.3.7当我尝试安装mysqlgem时,它显示Failedtobuildgemnativeextension错误,这是为什么?我的mysql版本是5.1.36(WampServer)E:\RubyApps\test_app2>geminstallmysql2Buildingnativeextensions.Thiscouldtakeawhile...ERROR:Errorinstallingmysql2:ERROR:Failedtobuildgemnat

ruby-on-rails - 如何在 Ruby on Rails 中连接到 MySQL?

我真的是RubyonRails的新手。我读过thistutorial这听起来很简单。但是我如何连接到我的数据库(MySQL)或者Rails使用什么?在php中我会使用...mysql_connect("...","...","...");mysql_select_db("...");我已经搜索了谷歌,找不到任何有用的提示。 最佳答案 查看配置文件config/database.yml您需要在那里设置您的配置。以下是生产环境的示例:production:adapter:mysql2encoding:utf8database:examp

ruby - 是否可以在不自动安装的情况下下载 Ruby gem?

当我使用gem下载某些东西时,我希望能够只下载gem,然后选择是否要安装它。我问这个是因为我想在多台计算机上安装特定的gem(而不是在每台计算机上都从Internet安装)。 最佳答案 gem获取所以,像$gemfetchgosu这样的东西......这将在当前目录中留下gosu-0.7.14.gem。即使您已经安装了它,它也能正常工作。 关于ruby-是否可以在不自动安装的情况下下载Rubygem?,我们在StackOverflow上找到一个类似的问题: h

ruby-on-rails - gem install mysql2 v '0.3.11' 无法在 Yosemite 上运行

在ruby​​版本1.9.3(rvm)上执行mysql2版本0.3.11的捆绑安装或直接gem安装时,我收到以下错误。但是当我安装最新版本0.3.16时它可以工作。我还包含了我的gcc版本以供引用。Gem::Ext::BuildError:ERROR:Failedtobuildgemnativeextension./Users/ginocarlocortez/.rvm/rubies/ruby-1.9.3-p547/bin/rubyextconf.rbcheckingforrb_thread_blocking_region()...yescheckingforrb_wait_for_si

ruby-on-rails - 无法在 Windows 7 上安装 MySQL2 gem

我在安装时收到以下错误消息,如果我需要发布更多详细信息,请告诉我。我按照以下位置的说明操作:https://github.com/oneclick/rubyinstaller/wiki/Development-Kit我正在使用ruby​​1.9.2p136(2010-12-25)[i386-mingw32]。这是我得到的:E:\work_desk\trunk>geminstallmysql2-v0.2.4TemporarilyenhancingPATHtoincludeDevKit...Buildingnativeextensions.Thiscouldtakeawhile...ERR

ruby-on-rails - MySQL2 gem 无法安装

长期以来,我一直在尝试在我的Ubuntu12.04服务器上安装Gitlab,在我运行bundleinstall之前一切顺利。它说它无法安装MySQL2,但没有给出原因或纠正措施。home/gitlab/gitlab$sudo-ugitlab-Hbundleinstall--deployment--withoutdevelopmenttestpostgresFetchinggemmetadatafromhttp://rubygems.org/.......Fetchinggemmetadatafromhttp://rubygems.org/..Usingrake(10.0.1)Using

ruby - 不使用 Rails 将 Ruby 连接到 Mysql

如何在没有Rails的情况下将Ruby连接到Mysql?我想使用Rubystandalone编写纯ruby​​代码来制作Web应用程序。没有抽象 最佳答案 看这里require"mysql"#ifneeded@db_host="localhost"@db_user="root"@db_pass="root"@db_name="your_db_name"client=Mysql::Client.new(:host=>@db_host,:username=>@db_user,:password=>@db_pass,:database=>

ruby - 尝试从 FTP 下载文件导致 "500 Illegal PORT command"错误

如果我在本地执行,一切正常:require'net/ftp'ftp=Net::FTP.new("myftpserver.com","username","password")ftp.getbinaryfile("/myfile.zip","localfile.zip")ftp.close如果我尝试在我使用的Linux服务器上执行它,结果是:/usr/local/lib/ruby/1.9.1/net/ftp.rb:273:in`getresp':500IllegalPORTcommand.(Net::FTPPermError)from/usr/local/lib/ruby/1.9.1/n