Tagged Questions
Ruby is an open-source dynamic object-oriented interpreted language created by Yukihiro Matsumoto (Matz) in 1993.
491
votes
6answers
91k views
342
votes
7answers
54k views
How to make --no-ri --no-rdoc the default for gem install?
I don't use RI or RDoc from the gems I install in my machine or in the servers I handle (I use other means of documentation), but every gem I install comes with RI and RDoc by default and I forget to ...
277
votes
7answers
63k views
How do I pass command line arguments to a rake task?
I've got a rake task that I am making that needs to insert a value into multiple databases.
I'd like to be able to pass this value into the rake task from the command line, or from another rake ...
246
votes
9answers
148k views
How to get a random number in Ruby?
In Ruby, how do you generate a random number between 0 and n? In .NET you can create a Random object, does something like this exist for Ruby?
234
votes
12answers
50k views
Why are scripting languages (e.g. Perl, Python, Ruby) not suitable as shell languages? [closed]
What are the differences between shell languages like bash, zsh, fish and the scripting languages above that makes them more suitable for the shell?
When using the command line the shell languages ...
224
votes
5answers
49k views
How to remove rvm (ruby version manager) from my system?
How can I remove rvm (ruby version manager) from my system?
218
votes
35answers
80k views
How best to generate a random string in Ruby
I'm currently using the following to generate an 8 character pseudo random upper case string [A-Z]
value = ""; 8.times{value << (65 + rand(25)).chr}
but it looks junky, and since it isn't a ...
216
votes
15answers
56k views
Can't install Ruby under Lion with RVM – GCC issues
Most questions regarding this problem are due to missing Xcode; I have Xcode 4.2 installed.
Install attempt:
rvm install 1.9.3
Installing Ruby from source to: /Users/jamie/.rvm/rubies/ruby-1.9.3-p0, ...
199
votes
8answers
41k views
What does “WARN Could not determine content-length of response body.” mean and how to I get rid of it?
Since upgrading to Rails 3.1 I'm seeing this warning message in my development log:
WARN Could not determine content-length of response body. Set content-length of the response or set ...
193
votes
11answers
88k views
Calling Bash Commands From Ruby
How do I call console/bash commands from inside of a Ruby Program? Also, how do I get output from these commands back into my program?
189
votes
1answer
47k views
Match All Occurrences of a Regex
Is there a quick way to find every match of a regular expression in Ruby? I've looked through the Regex object in the Ruby STL and searched on Google to no avail.
181
votes
8answers
76k views
How does one convert a string to lowercase in Ruby?
I know this is simple, but how do you take a string and convert it to lower case, or upper case, in Ruby?
177
votes
1answer
18k views
class << self idiom in Ruby
I suppose my question is exactly what the subject depicts, what does:
class << self
do in Ruby?
173
votes
8answers
70k views
Checking if a variable is defined in Ruby
How do you check whether a variable is defined in Ruby? Is there an "isset"-type method available?
171
votes
6answers
62k views
check if value exists in array in Ruby
If I have a value 'Dog' and an array ['Cat', 'Dog', 'Bird'], how do I check this w/o looping through. Is there a simple way of checking if the value exists, nothing more?
167
votes
11answers
29k views
When to use lambda, when to use Proc.new?
In Ruby 1.8, there are subtle differences between proc/lambda on the one hand, and Proc.new on the other.
What are those differences?
Can you give guidelines on how to decide which one to choose?
...
160
votes
20answers
28k views
Using Rails 3.1, where do you put your “page specific” javascript code?
To my understanding, all of your javascript gets merged into 1 file. Rails does this by default when it adds //= require_tree . to the bottom of your application.js manifest file.
This sounds like a ...
157
votes
31answers
24k views
What's Your Favourite IRB Trick? [closed]
What's your favourite IRB tip or trick? It could be a handy shortcut within the IRB console itself or maybe a .irbrc customization.
I really like that you can type an underscore to retrieve the ...
157
votes
14answers
37k views
sqlite3-ruby install error on Ubuntu
I have the following error during sqlite3-ruby install:
Building native extensions. This could take a while...
ERROR: Error installing sqlite3-ruby:
ERROR: Failed to build gem native ...
149
votes
6answers
38k views
How to run Rake tasks from within Rake tasks?
I have a Rakefile that compiles the project in two ways, according to the global variable $build_type, which can be :debug or :release (the results go in separate directories):
task :build => ...
147
votes
8answers
20k views
Heroku in real life apps [closed]
What is your experience with using Ruby on Rails on Heroku in a production environment?
Apart from the issue of the expensive HTTPS, do you see any drawback in the way it manages processes, memory ...
142
votes
4answers
41k views
What is the difference between include and require in Ruby?
My question is similar to "What is the difference between include and extend in Ruby?".
What's the difference between require and include in Ruby? If I just want to use the methods from a module in ...
140
votes
4answers
38k views
Ruby: what does %w(array) mean?
I'm looking at the documentation for FileUtils. I'm confused by the following line:
FileUtils.cp %w(cgi.rb complex.rb date.rb), '/usr/lib/ruby/1.6'
What does the %w mean? Can you point me to the ...
140
votes
6answers
30k views
A concise explanation of nil v. empty v. blank in Ruby on Rails
I find myself repeatedly looking for a clear definition of the differences of nil?, blank?, and empty? in Ruby on Rails. Here's the closest I've come:
blank? objects are false, empty, or a ...
133
votes
12answers
50k views
Getting Started with RSpec - Looking for tutorials
I am looking to get started building a project and want to use RSpec from day one. My Ruby background is limited; however, I do have a good understanding of MVC and the structure within Ruby.
In ...
132
votes
6answers
34k views
Equivalent of “continue” in Ruby
In C and many other languages, there is a continue keyword that, when used inside of a loop, jumps to the next iteration of the loop. Is there any equivalent of this continue keyword in Ruby?
132
votes
0answers
19k views
Where can I find good examples of Rails applications? [closed]
I would like to get source for a small, well written rails app to modify and "play with" as I learn how to program. I have found hundreds of open-source apps, but I don't know which are any good.
...
131
votes
23answers
47k views
Why is Lua considered a game language? [closed]
Why is Lua considered a game language?
I have been learning about Lua in the past month and I'm absolutely in love with the language, but all I see around that is built with Lua are games. I mean, ...
131
votes
6answers
64k views
Best practices with STDIN in Ruby?
I want to deal with the command line input in Ruby:
> cat input.txt | myprog.rb
> myprog.rb < input.txt
> myprog.rb arg1 arg2 arg3 ...
What is the best way to do it? In particular I ...
130
votes
9answers
57k views
How to sum array members in Ruby?
I have an array of integers.
For example:
array = [123,321,12389]
Is there any nice way to get the sum of them?
I know, that
sum = 0
array.each { |a| sum+=a }
would work.
127
votes
6answers
28k views
Does ruby have real multithreading?
I know about the "cooperative" threading of ruby using green threads. How can I create real "OS-level" threads in my application in order to make use of multiple cpu cores for processing?
126
votes
18answers
22k views
Why don't they implement Python and Ruby in the web browsers? [closed]
I wonder, why don't they implement other languages like Python and Ruby in the web browsers?
Don't they fit as client programming languages or did it just happen to be that JavaScript was the first ...
121
votes
1answer
73k views
Howto Uninstall RVM [duplicate]
Possible Duplicate:
How to remove rvm (ruby version manager) from my system?
How can I uninstall (or reinstall) RVM on Ubuntu 9.10? I messed up my current installation.
121
votes
7answers
24k views
Why does Ruby 1.9.2 remove “.” from LOAD_PATH, and what's the alternative?
The latest changesets to Ruby 1.9.2 no longer make the current directory . part of your LOAD_PATH. I have a non-trivial number of Rakefiles that assume that . is part of the LOAD_PATH, so this broke ...
120
votes
13answers
55k views
Ubuntu noob rails install fails on zlib
I've just moved over to Ubuntu 8.10 as my dev box; it's my first serious foray into Linux as a daily-use OS, and I'm having a hard time getting Rails going. I have followed a number of tutorials ...
120
votes
4answers
47k views
Rails :include vs. :joins
This is more of a "why do things work this way" question rather than a "I don't know how to do this" question...
So the gospel on pulling associated records that you know you're going to use is to ...
119
votes
7answers
51k views
Ruby on Rails: best method of handling currency / money
I'm new to Ruby on Rails and I'm working on a very basic shopping cart system. I have a table items that has a column price of type integer. I'm having trouble displaying the price value in my views ...
119
votes
8answers
21k views
When to use rspec let()?
I tend to use before blocks and set instance variables in them and then use them across my examples, but recently I came upon let(). According to rspec docs, it is used to
... to define a memoized ...
118
votes
6answers
75k views
Ruby - Convert File to String
I need an easy way to take a tar file and convert it into a string (and vice versa). Is there a way to do this in Ruby? My best attempt was this:
file = File.open("path-to-file.tar.gz")
contents = ""
...
118
votes
9answers
62k views
Is there a “do … while” loop in Ruby?
I'm using this code to let the user enter in names while the program stores them in an array until they enter an empty string (they must press enter after each name):
people = []
info = 'a' # must ...
118
votes
7answers
37k views
How do you do relative time in Rails?
I'm writing a Rails application, but can't seem to find how to do relative time, i.e. if given a certain Time class, it can calculate "30 seconds ago" or "2 days ago" or if it's longer than a month ...
117
votes
18answers
21k views
What's the best way to model recurring events in a calendar application?
I'm building a group calendar application that needs to support recurring events, but all the solutions I've come up with to handle these events seem like a hack. I can limit how far ahead one can ...
116
votes
3answers
61k views
How can I install local gem?
If I download a .gem file to a folder in my computer, can I install it later using gem install?
114
votes
2answers
32k views
How do I pick randomly from an array?
I want to know if there is a much cleaner way of doing this. Basically, I want to pick a random element from an array of variable length. Normally, I would do it like this:
myArray = ["stuff", ...
114
votes
19answers
34k views
Enums in Ruby
What's the best way to implement the enum idiom in Ruby? I'm looking for something which I can use (almost) like the Java/C# enums.
112
votes
6answers
40k views
Best way to require all files from a directory in ruby?
What's the best way to require all files from a directory in ruby ?
111
votes
23answers
25k views
Continuous Integration for Ruby on Rails?
I've been searching around for a Continuous Integration solution for Ruby on Rails, but haven't been too pleased with the results. I came from a .NET shop that used CruiseControl.NET and was really ...
110
votes
11answers
64k views
Getting output of system() calls in ruby
If I call a command using system() in ruby, how do I get its output?
e.g.
system("ls")
110
votes
7answers
32k views
What is the easiest way to duplicate an activerecord record?
I want to make a copy of an activerecord record, changing a single field in the process (in addition to the id). What is the simplest way to accomplish this?
I realize I could create a new record, ...
110
votes
5answers
17k views
Ruby : How to write a gem?
I'd like to write a package for Ruby and make it available as a gem.
What are the tools, steps and pitfalls ?
Are there any good tutorials, screencasts, etc., which helped you learning how to do it ? ...