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.
…
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 …
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
vote
What’s the best way to compile Ruby from source on 64-bit RedHat Linux
The best way would probably be to just "steal" a Ruby 1.8.6 RPM from Fedora. The second best way would be to steal a Ruby 1.8.6 SRPM from Fedora and build it yourself.
However, there is one …
3
votes
rails if object.nil? then magic ‘’ in views?
For a little more comprehensive solution, you could check out the Introduce Null Object Refactoring. Th …
2
votes
Nokogiri (RubyGem): Find and replace HTML tags
#!/usr/bin/env ruby
require 'rubygems'
gem 'nokogiri', '~> 1.2.1'
require 'nokogiri'
doc = Nokogiri::HTML.parse <<-HERE
<html>
<body>
<h1>Foo</h1& …
2
votes
What is the best Ruby on Rails environment for a Visual Studio user?
If you want to stick with Visual Studio, you can always use the Ruby in Steel plugin by …
2
votes
2
votes
Yaml load error in Ruby
If you want an answer, you must provide the relevant information. The error message says very clearly what is wrong: there is an error in line 26 of your database.yml. But since you ha …
1
vote
1
vote
Django-like framework on Ruby?
I think you need to define a little closer what you mean by "Django-like". Depending on your exact definition, any of these might fit the bill:
…
3
votes
Why do Ruby developers appear not to use UML?
One of the obvious reasons is that well-designed Ruby programs rely heavily on Mixins, which AFAIK simply cannot be modeled in UML at all. I know that Schärli et al developed an extension to UML th …
4
votes
Has anyone successfully deployed a Rails project with Ruby 1.9.1?
Gitorious is a pretty large and complex Rails project with a large number of users. Gitorious runs fine on both Ruby 1.8 and Ruby 1.9, but the big …
2
votes
Is there a “Code Complete” book for Ruby?
For such an old programming language (well, maybe not "Lisp" old, but Ruby is older than Java, after all) and a community that fanatic about code quality, style and beauty, the Ruby book market is …
