RSpec, IronRuby and RubyMine is an amazing combination. Here is a screenshot of an example I’m currently working on…
All I do is execute the Rake command below, which exists in my rakefile.rb. Rubymine does the rest! Very cool.
desc "Run all examples" Spec::Rake::SpecTask.new('examples') do |t| t.spec_files = FileList['examples/**/*.rb'] end