We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Creating a Rake task to run tests is pretty simple. Just update your Rakefile.
require "bundler/gem_tasks" task :test do exec "bundle exec pry-test" end task :default => :test