Don't use be_true to check if a value is true. It actually checks if it anything other than...

webpack.js.org

You can do this per environment, e.g. in config/webpack/test.js: const environment = require('./environment') const config = environment.toWebpackConfig() config.devtool = 'none' module.exports = config

everydayrails.com

I recently had a need to demonstrate a data-heavy application to potential customers. Demonstrating the application with bogus numbers...

conversionxl.com

We all struggle with pricing. Here is some interesting information that helps you with your pricing decisions.

lorempixel.com

Generate dummy images for a given dimension and topic.

makandra dev
chrome.google.com

Ever wanted to preview a pattern from Subtle Patterns on your site without the hassle of swapping out images and...

makandracards.com

Added information about what jQuery considers "visible" Added a solution for Prototype Added a patch for Prototype that replaces the...

derwiki.tumblr.com

Some advice for bulk loading many records into InnoDB and finishing before the sun burns out. Use with care.

makandra dev
github.com

Preview email in the browser instead of sending it.

whatsmydns.net

whatsmydns.net is an online service that allows you to instantly perform a DNS lookup to check a hostnames current IP...

api.rubyonrails.org

Wrapping a string in this class gives you a prettier way to test for equality...

github.com

Adds a slide out panel to your Rails application that directs clients to test stories that have been marked as 'delivered' in Pivotal Tracker...

youtube.com

power-rake db:migrate VERSION=20100913132321 By default the environments development, test, cucumber and performance are considered. The script will not run rake on a production or...

github.com

A fake filesystem. Use it in your tests...

railscheck.rubyforge.org

...a shell command task "railscheck" that you can run against your Rails projects to test for a number of typical bugs, potential problems and inconsistencies...

integrityapp.com

...while you code. As soon as you push your commits, it builds, runs your tests, and makes sure everything works fine...

github.com

Or, you can test your Rack application (or Sinatra, or Rails, or Merb) using arbitrary HTTP client libraries, to check interoperability...

github.com

Write declarative tests using nested contexts without performance penalties. Contest is less than 100 lines of code and gets the job done...

github.com

Riot differs primarily in that it does not rerun setup for each test in a context...

exogen.github.com

Unlock achievements for running your test suite...

robots.thoughtbot.com

ShamRack mounts a Rack app locally, just for your tests. It goes one further: it “mounts” it using Net::HTTP such that requests to the Rack app never hit any...

github.com

The Holy Grail of testing for front-end development; execute browser-less, console-based, javascript + DOM code right from within your Rails test suite...

Always use simply require 'spec_helper' If you mix it up like require 'spec_helper' require File.dirname(__FILE__) + '/../spec_helper'

If your Ruby project includes a gem like Spreewald that comes with some external step definition, RubyMine does not know...