Ruby is an open-source dynamic object-oriented interpreted language created by Yukihiro Matsumoto (Matz) in 1993.

learn more… | top users | synonyms | ruby jobs

7
votes
0answers
121 views

save_and_open_page and spork, spork is loosing test suite / output

When i run my rspec tests with spork, every time i use capybara's save_and_open_page, spork is loosing the test suite.. or maybe doesnt output anything anymore... See the log # => without ...
7
votes
0answers
183 views

Rake dependency not executing but invoke works

I've been trying to run rake db:test:clone_structure, but it keeps failing to rebuild the database. I finally looked at the task itself: task :clone_structure => [ "db:structure:dump", ...
7
votes
0answers
181 views

does eventmachine issue close_notify on close_connection if tls_start was run?

i am trying to program simle ftps server based on eventmachine control socket works properly. when using data socket for data transfer, seems that everything works well (tls handshake completes ...
6
votes
0answers
215 views

screenshot of specific dom element using ruby

Is there a way to do this http://casperjs.org/api.html#casper.captureSelector using capybara+phantomjs. Or perhaps, more complex, crop a full page screenshot to the specific dom element?
5
votes
0answers
104 views

Disable rdoc and ri from gemspec / Gemfile

I have a client gem which I will distribute business clients via rubygems. Gem client has cca. dozen gem dependencies and when it is being installed it takes a long time to install it due to ...
5
votes
0answers
95 views

How to kill all processes inside ruby Thor on stop?

Well, I have a script below using Thor for running it like a rake task and managing ARGV. #!/usr/bin/env ruby require "thor" class Run < Thor desc "start", "start script" def start p1 ...
5
votes
0answers
311 views

ruby serialport gem, who is responsible to check parity errors?

gems serialport (1.0.4) Authors: Guillaume Pierronnet, Alan Stern, Daniel E. Shipton, Tobin Richard, Hector Parra, Ryan C. Payne Homepage: http://github.com/hparra/ruby-serialport/ Library for using ...
5
votes
0answers
615 views

ActiveRecord::ConnectionNotEstablished error (eager loading?)

I'm developing on OSX and deploying on Linux. My environments are: Development: OSX Lion Ruby 1.9.2p180 ActiveRecord 3.0.9 PostgreSQL 9.0 Test: Ubuntu Server 11.04 Ruby 1.9.2p290 ActiveRecord ...
4
votes
0answers
192 views

In JRuby, how do I determine what causes java.lang.ThreadDeath?

While running unit tests for some code that interacts with temporary files in JRuby, I sometimes get the following: Exception: java.lang.ThreadDeath thrown from the UncaughtExceptionHandler in thread ...
4
votes
0answers
571 views

god doesn't stop unicorn

I have this file rails_env = ENV['RAILS_ENV'] || 'development' rails_root = ENV['RAILS_ROOT'] || "/home/luiz/rails_dev/api" God.watch do |w| w.name = "unicorn" w.interval = 30.seconds # default ...
4
votes
0answers
199 views

Ruby Net::FTP Special Chars in Filenames

I am trying to get a file from a server which has (in this case) a comma at the end of its name. #sc is my ftp connection, tmp is a Tempfile sc.getbinaryfile(fname,tmp.path) which gives me an ...
3
votes
0answers
105 views

Save images from a website

How can i save website images with watir, without reloading them with open-uri or similar? I: The reason why i can't use File.open(file_name, 'wb') do |f| f.write ...
3
votes
0answers
38 views

Data modified when passing to C from Ruby using NUM2LL and NUM2INT

I have a C module that I am testing with Ruby test by extending ruby with this piece of C code. Any number above 2 ** 24 -1 is being modified. I need to pass 64-bit values back and forth between Ruby ...
3
votes
0answers
80 views

DBI::InterfaceError: Could not load driver (uninitialized constant MysqlError)

I have included gems, dbd-mysql (0.4.4) dbi (0.4.5) mysql (2.8.1) on rails console when I run the following code, require 'rubygems' require "dbi" require 'dbd-mysql' dbh = ...
3
votes
0answers
140 views

Why does [1,2,3,4,5].each {|n| puts n } generate an rspec Coverage Report (!)

I made a typo. I meant to type this: [1,2,3,4,5].each {|n| puts n} But I typed this: [1,2,3,4,5].each n { puts n } I got: Coverage report generated for RSpec to /home/... The result from ...
3
votes
0answers
97 views

Newline gets prepended when sending form with Capybara

I have this test in a Rails app, using Capybara: within "#register" do fill_in "Biography (optionnal)", :with => "Hello world!" end click_on "Save" # Check that form is repopulated with old ...
3
votes
0answers
104 views

Using ActiveRecord interface for Models backed by external API in Ruby on Rails

I'm trying to use Models in my Rails application that retrieve information from an external API. What I would like to do is access my data models (which may consist of information resulting from ...
3
votes
0answers
63 views

Including Shoes in Shoes package

I've been having a problem with including Shoes in a Shoes app for Windows. The Packager tool wokrs perfectly when i don't ask to include Shoes in the app : I get a .exe that, if launched on a ...
3
votes
0answers
88 views

Feedback on Ruby / ChefSpec coding style

I'm rather new to Ruby, but I have been doing a lot of research on Chef testing for the past two weeks. This test uses ChefSpec & Fauxhai, but it doesn't look very "ruby-ish" and I was hoping the ...
3
votes
0answers
105 views

Ruby Threads with Watir

I have several classes written that govern how I want to handle several websites, with similar methods in both (ie. login, refresh). Each class opens up its own WATIR browser instance. class Site1 ...
3
votes
0answers
91 views

how to halt from inside stream block in sinatra?

I am trying to respond with a HTTP error code from my streaming block, but the web server throws an exception. what is the proper way to do it in this context? ...
3
votes
0answers
183 views

Resque and New relic

I've started getting strange errors with New Relic and resque INFO : Starting Agent shutdown ERROR : undefined method `write' for nil:NilClass: Unable to send data to parent process, please see ...
3
votes
0answers
95 views

Verifying signature of non-hashed data with Ruby OpenSSL

I have an RSA public key, some data and a signature of that data. I need to verify the signature. However, the signature is not of a digest of the data, but of the entire data. (The data itself is ...
3
votes
0answers
38 views

_mysql_init not found when using DataMapper

I've got a simple mysql table % mysql -u rampion dev -e 'describe person' +-------+--------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra ...
3
votes
0answers
1k views

Unable to install OpenSSL package with RVM on Mountain Lion

I'm setting up RVM, Rails, etc., on a clean install of Mountain Lion. I am following the guide "How to Install Xcode, Homebrew, Git, RVM, & Ruby 1.9.3 on Snow Leopard, Lion, and Mountain Lion". ...
3
votes
0answers
105 views

Installing binaries on Heroku, specifically FontCustom

I'm building a web app on Heroku which will allow users to select n number of SVG icons, and package those icons into a font file for them. The core of the app is a project called FontCustom. Using a ...
3
votes
0answers
213 views

Capybara Connection Refused

I am using Capybara with Selenium in Ruby (not within a testing framework.) If I open a ruby console and run the method, it works, but if i then run the same method again I get this error. ...
3
votes
0answers
93 views

execute a Thor task located in a bundled gem

I have a gem, my_gem, that has thor as a runtime dependency. I have a subclass of Thor located in the gem at: lib/tasks/task.thor from the gem's source directory I can run: bundle thor ...
3
votes
0answers
165 views

SyntaxError at octopress image_tag plugin when generating blog

I use octopress for my technical blog. I updated my octopress codes from official octopress repo, and I get an error like that when I run rake generate: |1.9.3-p194| home in ...
3
votes
0answers
207 views

EventMachine and em-websocket - reading from a queue and pushing to a channel

I'm using eventmachine to read from a HornetQ topic, push to a Channel which is subscribed to by EM websocket connections. I need to prevent the @topic.receive loop from blocking, so have created a ...
3
votes
0answers
298 views

Monitoring resque with monit with RVM

I previously had Monit monitoring resque with the following Monit script check process resque_worker_production_QUEUE with pidfile /var/tmp/resque_production.pid start program = "/usr/bin/env ...
3
votes
0answers
369 views

Install devkit for pik-installed Rubies

I've installed two rubies using pik, but I haven't installed any rubies outside of pik. When I choose a Ruby using pik, and then try to set up devkit, no binaries are added to the generated ...
3
votes
0answers
1k views

jRuby, gems with C extensions

Does anyone has the same error with jRuby? When I trying to install gem with C extension I have the next error: gem install serialport Building native extensions. This could take a while... ...
3
votes
0answers
161 views

Jade-style blocks in Ruby templates (Haml?)

is there any template engine in Ruby which supports something like Jade extend and block (https://github.com/visionmedia/jade#template-inheritance)? This is an awesome feature, compared with the ...
3
votes
0answers
167 views

C1 or C2 coverage tool for ruby

Is there any tool for C1 or C2 code coverage for Ruby (1.9)? SimpleCov supports only C0, but maybe there is another tool. I'm aware that a similar question has been asked here, but it was a couple ...
3
votes
0answers
286 views

STDIN and Powershell - How do I make the encoding match?

I have a problem with Ruby (1.9.3) and Powershell. I need to write an interactive console app which will deal with sentences in the Polish language. I've been helped out and can retrieve ARGV ...
3
votes
0answers
161 views

Generate yaml node anchors and references programmatically

I need to generate this yaml programmatically in Rails: foo: &foo x: 1 y: 2 bar: <<: *foo z: 3 which when it's parsed should give this hash: output = { :foo => { ...
3
votes
0answers
192 views

Why is my middleware leaking memory?

I've forked the rack-timeout gem so I could add some features -- namely, catching the incidents of timeouts, logging them, and sending a 503. Here's my fork. Here's the Rack app/middleware in my ...
3
votes
0answers
251 views

DataMapper one-to-many delete failing

class Alpha include DataMapper::Resource property :id, Serial property :name, String has n, :betas end class Beta include DataMapper::Resource property :id, Serial property :name, ...
3
votes
0answers
268 views

Rails Association Extensions: Override a HABTM assignment (collection=) method

In a question I've previously answered, I used an association extension to override a HABTM collection's append (<<) method (Also, a similar question): has_and_belongs_to_many(:countries) do ...
3
votes
0answers
1k views

Trying to use multiple databases - getting ActiveRecord Connection Not Established

I'm trying to set up ActiveRecord so I can use multiple database connections in my application. I am not using Rails. To do this, I set up an abstract class for each of my databases: class ...
3
votes
0answers
159 views

Netbeans Ruby Syntax Highlighting for Ruby 1.9?

I've been getting some minor but annoying error warnings in Netbeans using the Ruby 1.9 colon hash syntax. Example %meta{charset: "UTF-8"} This and all subsequent lines would be underlined. Is ...
3
votes
0answers
449 views

RVM after_cd Hook

I'm trying to use the RVM hooks to run a command after I cd into a directory with my rails app. The contents of my ~/.rvm/hooks/after_cd is: echo "Now using $rvm_ruby_string" The contents of my ...
3
votes
0answers
163 views

Rails 2.3.14: How to serialise an ActionController::Request object?

I need to write some methods that Do Things based on the kind of request object received by a Rails 2.3.14 controller. However, I don't want to fire up the entire application, nor even a controller; ...
3
votes
0answers
307 views

Unable to load thrift_native extension. Defaulting to pure Ruby libraries

when I execute a ruby code I get Unable to load thrift_native extension. Defaulting to pure Ruby libraries. how I ignore this message ?
3
votes
0answers
116 views

JAX-WS Ruby client

I knew Ruby community favors REST style, but I need to access a JAX-WS document style web service. SOAP::WSDLDriverFactory.new(SERVICE_WSDL).create_rpc_driver doesn't work for document style. I ...
3
votes
0answers
375 views

`require': File not found zlib.so

I've installed ruby and ruby gems on an Arm architecture. On Arm dns323, the ruby binary works, but when I run the gem binary, I have an error: /opt/lib/ruby/1.9.1/rubygems/spec_fetcher.rb:1:in ...
3
votes
0answers
880 views

Save PDF file shown by PDFKit middleware (Solution)

If somebody is interested in saving the pdf file in the filesystem which is shown by PDFKit middleware gem. Then here it is... 1. Override the 'call' method of middleware.rb file. 2. In overriding ...
3
votes
0answers
249 views

Ruby: Declarative_authorization polymorphic associations

I have two models (Item and Theme). They are both owned by a third model Users with a has_many association (User has many Themes and Items). Both Item and Theme have_many :images. The Image model is ...
2
votes
0answers
18 views

Zeus fails when testing with Rspec

When I run this command: rspec spec/controllers/messages_controller_spec.rb I get this: Finished in 0.54446 seconds 2 examples, 0 failures Randomized with seed 6226 It's good. ...

1 2 3 4 5 223