Due to network or hardware failures, it can happen that one of your cronjobs will not run at the time...
TL;DR In blueprints, always wrap associations in blocks. # Broken Task.blueprint(:vacation) do project Project.make(:vacation) hours 8 accounting_method...
So you have placed a breakpoint somewhere and now want to dig around, but not even inspecting variables is working...
While RSpec 1 and 2 decided that specs inside spec/model are model specs, and those inside spec/features are feature specs...
When you don't only have a favicon.ico in your project but also PNGs of different sizes and backgrounds, you...
Spreewald 1.1.0 drops the be_true and be_false matchers in order to be RSpec 3 and Ruby 2 compatible...
When making cross-domain AJAX requests with jQuery (using CORS or xdomain or similar), you will run into issues with...
The debugger gem does not seem to be properly working on Ruby 2. Use byebug instead! Byebug is a simple...
The attached RSpec matcher allows for comfortably testing delegation. Examples describe Post do it { should delegate(:name).to(:author).with...
SudoSlider is a simple yet powerful content slider that makes no (or very few) assumptions about your markup and is...
If your requests blow up in Ruby or CURL, the server you're connecting to might only support requests with...
So you're getting an error message like the following, although your Gemfile lists shoulda-matchers and it has always...
Using this gem, whenever a Capybara test in Cucumber, Rspec or Minitest fails, the HTML for the failed page and...
RSpec 3.0 deprecates the :should way of writing specs for expecting things to happen. However, if you have tests you...
Sometimes you're getting an ActiveSupport deprecation warning that you cannot or don't want to fix. In these cases...
Warnings like those below may originate from rspec or shoulda-matchers or other gems that have not updated yet to...
Since version 34, Chromium/Chrome ignores the autocomplete="off" attribute on forms or input fields. Recent versions of other browser do...
You are probably using Ruby 1.8.7 with a too recent versions of Rubygems. Downgrade your Rubygems to the latest version...
When using @media CSS queries, Internet Explorer 8 and below will fail to respect them. Though there are several options...
If you are using Angular and want something like Rails' simple_format which HTML-formats a plain-text input into...
Sometimes you may want to print files from the command line, especially when you have lots of them.
When using TextMate2 with the cucumber bundle, it does not recognize step definitions (e.g. custom_steps.rb) as such but believes they...
If you are trying to inspect timings in JavaScript, you can use console.time and console.timeEnd which will write to your...
Wondering how a specific method on an object is exactly named? You can use Enumerable#grep to detect it in...