spin
spin copied to clipboard
Spin speeds up your Rails testing workflow by preloading your Rails environment.
Hey, I just added a ENV variable and a default preload path to make it work with Padrino out of the box. Thank you making this gem, It was so...
First consequence is that the log output will not include `tty?`. Second consequence is that `spin` will correctly abort if there are no files to push.
Simple fix for the indentation of the banner. Before: ``` Usage: spin serve spin push ... Spin preloads your Rails environment to speed up your autotest(ish) workflow. Server Options: -I,...
I've recently discovered the `--push-results` option, which is great.` However, pry breakpoints don't work when using this option: ``` before_session hook failed: Errno::ENOTTY: Inappropriate ioctl for device ~/.rbenv/versions/1.9.3-p327/lib/ruby/gems/1.9.1/gems/pry-0.9.12.2/lib/pry/terminal.rb:45:in `winsize' (see...
Just like rspec, a user should be able to define serve command settings in a .spin file. For example: --push-results -t The code to accomplish this would be trivial and...
I always see `0 examples, 0 failures` in the output even when I'm only running test-unit tests. Even `--test-unit` doesn't stop this: ``` $ spin serve --push-results -t --test-unit -Itest:lib...
With rspec you can do `spin push spec`, but there is no (documented) equivalent for test-unit.
My `test/minitest_helper.rb`: ``` ruby ENV["RAILS_ENV"] = "test" require File.expand_path('../../config/environment', __FILE__) require "minitest/autorun" require "minitest/rails" # Add `gem "minitest-rails-capybara"` to the test group of your Gemfile # and uncomment the following...