Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jruby/jruby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0694db42019c
Choose a base ref
...
head repository: jruby/jruby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1c99ba4aabfd
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Sep 27, 2016

  1. Squashed 'spec/mspec/' changes from 5dae43c..5576c6e

    5576c6e Add missing requires in MSpecScript#register
    
    git-subtree-dir: spec/mspec
    git-subtree-split: 5576c6ed46deb8a53fd7f3668df2dc24f591c6cd
    eregon committed Sep 27, 2016
    Copy the full SHA
    f30a14b View commit details
  2. Copy the full SHA
    1c99ba4 View commit details
Showing with 2 additions and 0 deletions.
  1. +2 −0 spec/mspec/lib/mspec/utils/script.rb
2 changes: 2 additions & 0 deletions spec/mspec/lib/mspec/utils/script.rb
Original file line number Diff line number Diff line change
@@ -109,6 +109,8 @@ def custom_options(options)
def register
require 'mspec/runner/formatters/dotted'
require 'mspec/runner/formatters/spinner'
require 'mspec/runner/formatters/file'
require 'mspec/runner/filters'

if config[:formatter].nil?
config[:formatter] = STDOUT.tty? ? SpinnerFormatter : @files.size < 50 ? DottedFormatter : FileFormatter