DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Get A Random Sampling Of 10% Of Spec Files To Run
// If you have a huge spec suite that takes hours to run, you might want to just run a random sampling instead of the whole suite.
Dir["spec/**/*_spec.rb"].sort_by { rand }.first(Dir["spec/**/*_spec.rb"].size / 10).join " "





