Interesting Things
RailsBridge is organizing a global BugMash to help knock down some of
the bugs on the Rails lighthouse this weekend. If your interested in helping out there is more information on their wikiWe started using JRuby for a project and wanted to use JRuby to run our specs. If you install RSpec 1.2.7 or higher you can specify the ruby command used to run your SpecTask in rspec.rake like this:
desc "Run all specs in spec directory (excluding plugin specs)"
Spec::Rake::SpecTask.new(:spec) do |t|
t.spec_opts = ['--options', ""#{File.dirname(__FILE__)}/../../spec/spec.opts""]
t.spec_files = FileList['spec/**/*/*_spec.rb']
t.ruby_cmd = 'jruby'
end