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

learn more… | top users | synonyms

258
votes
36answers
26k views

What does Ruby have that Python doesn't, and vice versa? [closed]

There is a lot of discussions of Python vs Ruby, and I all find them completely unhelpful, because they all turn around why feature X sucks in language Y, or that claim language Y doesn't have X, ...
212
votes
54answers
22k views

Learning Ruby on Rails

As it stands now, I'm a Java and C# developer. The more and more I look at Ruby on Rails, the more I really want to learn it. What have you found to be the best route to learn RoR? Would it be ...
169
votes
36answers
25k views

Rails or Django? (or something else?) [closed]

This post is from the early days of Stack Overflow, and while we recognize its historical significance, we also recognize that the current community of users will likely close similar posts. Please ...
153
votes
45answers
17k views

Hidden features of Ruby

Continuing the "Hidden features of ..." meme, let's share the lesser-known but useful features of Ruby programming language. Try to limit this discussion with core Ruby, without any Ruby on Rails ...
131
votes
3answers
24k views

How to write a switch statement in Ruby?

How do you write a switch statement in Ruby?
125
votes
9answers
40k views

Why are scripting languages (e.g. Perl, Python, Ruby) not suitable as shell languages?

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 ...
122
votes
7answers
21k views

How to make --no-ri --no-rdoc default for gem install?

I don't use RI nor RDOC from the gems I install in my machine or in the servers I handle. (I use other means of documentation) Every gem I install comes whith ri and rdoc by default and I forget to ...
96
votes
13answers
12k views

Where can I find good examples of Rails applications?

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. ...
92
votes
7answers
25k views

Good Ruby on Rails Free Hosting [closed]

What is the best place to go for free Ruby on Rails web hosting? I'm starting my project and I don't need a really good package for hosting, but if my project begins to grow then I'll pay for the ...
92
votes
25answers
32k 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 ...
90
votes
31answers
11k views

What's Your Favourite IRB Trick?

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 ...
90
votes
25answers
66k views

What Ruby IDE do you prefer? [closed]

I've been using Eclipse with RDT (not RadRails) a lot lately, and I'm quite happy with it, but I'm wondering if you guys know any decent alternatives. I know NetBeans also supports Ruby these days, ...
89
votes
20answers
20k views

Why don't they implement Python and Ruby in the web browsers?

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 ...
87
votes
37answers
5k views

Ruby off the rails

Sometimes it feels that my company is the only company in the world using Ruby but not Ruby on Rails, to the point that Rails has almost become synonymous with Ruby. I'm sure this isn't really true, ...
87
votes
11answers
10k 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 ...
86
votes
5answers
24k 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 ...
86
votes
5answers
65k 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?
84
votes
1answer
21k views

Ruby - 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. Thanks!
82
votes
28answers
24k 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, ...
81
votes
7answers
11k views

Heroku in real life apps

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 ...
81
votes
16answers
12k 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 ...
77
votes
13answers
35k 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 ...
77
votes
29answers
8k views

Why use Ruby instead of Smalltalk?

Ruby is becoming popular, largely from the influence Ruby on Rails, but it feels like it is currently struggling through its adolescence. There are a lot of similarities between Ruby and Smalltalk -- ...
75
votes
10answers
36k 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?
70
votes
5answers
35k 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 ...
69
votes
9answers
16k views

Rails Model, View, Controller, and Helper: what goes where?

In Ruby on Rails Development (or MVC in general), what quick rule should I follow as to where to put logic. Please answer in the affirmative - With Do put this here, rather than Don't put that there. ...
68
votes
25answers
4k views

What are the Ruby Gotchas a newbie should be warned about?

I have recently learned the Ruby programming language, and all in all it is a good language. But I was quite surprised to see that it was not as simple as I had expected. More precisely, the "rule ...
68
votes
5answers
26k 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?
68
votes
8answers
22k views

Getting Started with RSpec - Looking for tutorials

I'm 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 doing ...
63
votes
2answers
15k views

How to remove rvm (ruby version manager) from my system?

How can I remove rvm (ruby version manager) from my system?
63
votes
7answers
12k 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 ...
63
votes
32answers
22k views

Python Vs. Ruby for Metaprogramming

I'm currently primarily a D programmer and am looking to add another language to my toolbox, preferably one that supports the metaprogramming hacks that just can't be done in a statically compiled ...
62
votes
5answers
15k 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 => ...
61
votes
22answers
58k views

Rails, MySQL and Snow Leopard

I upgraded to Snow Leopard using the disc we got at WWDC. Trying to run some of my rails apps now complains about sql (in /Users/coneybeare/Projects/Ambiance/ambiance-server) !!! The bundled ...
60
votes
12answers
16k 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.
59
votes
6answers
31k 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 = "" ...
58
votes
12answers
17k views

Why can't I install Rails on Lion using RVM?

I'm running into issues trying to install Rails on OS X Lion using RVM. So far, I have done the following: Installed Mac OS X Lion Version 10.7 (Build 11A459e). Installed XCode 4.1 Developer ...
58
votes
6answers
2k views

Array slicing in Ruby: looking for explanation for illogical behaviour (taken from Rubykoans.com)

I was going through the exercises at http://rubykoans.com/ and I was struck by the following Ruby quirk that I found really unexplainable: array = [:peanut, :butter, :and, :jelly] array[0] => ...
57
votes
15answers
8k views

Why is Ruby more suitable for Rails than Python?

Python and Ruby are usually considered to be close cousins (though with quite different historical baggage) with similar expressiveness and power. But some have argued that the immense success of the ...
57
votes
18answers
14k 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 ...
56
votes
4answers
24k views

Ruby on Rails: best method of handling currency / money

I'm in the process of learning Ruby on Rails and I've set myself the task of putting together a very basic shopping cart system. I have a table items that costs of a price column currently set to ...
56
votes
7answers
15k 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 ...
56
votes
11answers
4k views

.NET Migrations Engine

I was once under the belief that Microsoft was working on an official, ruby-like, Migration framework. However, I haven't been able to find any additional information (or even the original source of ...
55
votes
8answers
27k 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 ...
54
votes
3answers
11k views

JRuby on Rails vs. Ruby on Rails, what's difference?

I'm looking to try out JRuby and JRuby on Rails. I'm having trouble finding information on what's difference between JRuby on Rails and Ruby on Rails. What's the differences I need to look out for?
53
votes
31answers
12k views

What is the best way to learn Ruby? [closed]

How do I go about learning Ruby quickly and easily without buying expensive programming books?
51
votes
5answers
14k views

Bundle / Rake error

This is kinda weird - i do not think i changed any code in this particular application (but i was working on another app and performing some gem updates there) When i started running the rake cron on ...
51
votes
12answers
5k views

Why is this RMagick call generating a segmentation fault?

I've been banging my head against the wall for the better part of an hour trying to figure out what's going wrong here, and I'm sure (or rather hoping) it's something fairly obvious that I'm ...
50
votes
14answers
5k 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 ...
50
votes
10answers
17k views

How do I use Ruby for shell scripting?

I have some simple shell scripting tasks that I want to do for example: Selecting a file in the working directory from a list of the files matching some regular expression I know that I can do ...

1 2 3 4 5 764