Search Results

-2
votes

Ruby - Exit Message

If you want to denote an actual error in your code, you could raise a RuntimeError exception: raise RuntimeError, 'Message goes here' This will print …
7
votes

How can I program defensively in Ruby?

I don't think this is a concern. Yes, the mythical "somebody" can replace the implementation of MD5 with something insecure. But in order to do that, the mythical somebody must actually be …
32
votes

Does ruby have real multithreading?

You seem to be confusing two very different things here: the Ruby Programming Language and the specific threading model of one specific implementation of the Ruby Programming Language. T …
0
votes

Why Does Ruby Only Permit Certain Operator Overloading

In Ruby 1.9, the ! operator is actually also a method and can be overriden. This only leaves && and || and their low-precedence counterparts and …
8
votes

How do you pass arguments to define_method?

In addition to Kevin Conner's answer: block arguments do not support the same semantics as method arguments. You cannot define default arguments or block arguments. This is only fixed in Ru …
14
votes

Why isn’t there a viable mod_ruby for Apache yet?

The basic problem is this: for a long time, MRI was the only feasible Ruby Implementation. MRI has a number of problems that make it hard to embed it into another application (which is basically wh …
6
votes

Is Ruby On Rails ready for the Enterprise?

IBM, Oracle, Sun and JPMorgan Chase are only a few of the companies that use Ruby on Rails. It probably doesn't get more enterprisey than that. …
0
votes

Why Should I Learn Ruby?

You shouldn't. Ruby and Python are too similar. Learning one when you already know the other will not gain you any significant insight. Instead, try to learn languages which are really …
-1
votes

How do you do polymorphism in Ruby?

This is how I would write it: class Animal def make_noise; '' end def sleep; puts "#{self.class.name} is sleeping." end end class Dog < Animal; def make_noise; 'Woof!' end …
1
vote

Has anyone used Raven?

I haven't used either Raven or Buildr, but I have heard good things about the latter. In …
6
votes

Does C1 code coverage analysis exist for Ruby?

At the moment, there are no C1 coverage tools for Ruby. In fact, there aren't any coverage tools other than RCov. Until recently, it was only possible to write tools like this by p …
2
votes

How to extract a single character (as a string) from a larger string in Ruby?

In Ruby 1.9, it's easy. In Ruby 1.9, Strings are encoding-aware sequences of characters, so you can just index into it and you will get a single-character string out of it: 'µsec'[0 …
6
votes

Examples of ‘Things’ that are not Objects in Ruby

The most obvious one that jumps into my head would be blocks. Blocks can be easily reified to a Proc object, either by using the &block parameter form in a parameter l …
1
vote

How to install libraries?

Those are all C libraries that have nothing whatsoever to do with Ruby, and are thus not packaged as Gems. You will have to install them via your Operating System's package manager, or, if your Ope …
10
votes

Why can’t I install the sqlite gem?

The SQLite RubyGem isn't actually a RubyGem, it's a "CGem", IOW it's written in C. This means it has to be compiled and linked to the Ruby interpreter when you install it and in o …

1 2 3 4 5 7 next
15 30 50 per page