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

learn more… | top users | synonyms | ruby jobs

1
vote
4answers
87 views
+50

Ruby CSV.open need to remove quotes and null characters

I am retrieving a large hash of results from a database query and writing them to a csv file. The code block below takes the results and creates the CSV. With the quote_char: option it will replace ...
0
votes
3answers
83 views
+200

rbenv continually generating vagrant shim

I am using the latest vagrant with rbenv and various rubies. I am using the latest vagrant, which no longer uses a gem. When I execute a vagrant command I see the following error: rbenv: vagrant: ...
3
votes
4answers
81 views
+50

Rails - Where (directories) to put Models that are not Active Record

We are building out apps that have Models that are not database components. We are curious to learn what others are doing in the rails community to address this subject. We are struggling with where ...
2
votes
4answers
121 views
+50

stack level too deep (SystemStackError) when using both rspec and cucumber with ruby and rails

This is a question about what debugging strategy I should use when encountering a stack level too deep (SystemStackError) using Ruby and Rails. I am seeing these errors when using either rspec or ...
2
votes
2answers
44 views
+50

Wrapping up a method with ruby-progressbar gem

I am trying to use ruby-progressbar gem with ruby-git gem My aim is to capture the dynamic progress bar during the git clone so that i can get the progress bar for this git clone I am trying to use ...