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: opal/opal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a31f2ab7b303
Choose a base ref
...
head repository: opal/opal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 48c230568baa
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Dec 25, 2018

  1. Add a warn about a misspelled RUBYSPECS ENV var

    And avoid wasting time the next time!
    elia committed Dec 25, 2018
    Copy the full SHA
    48c2305 View commit details
Showing with 5 additions and 0 deletions.
  1. +5 −0 tasks/testing.rake
5 changes: 5 additions & 0 deletions tasks/testing.rake
Original file line number Diff line number Diff line change
@@ -3,6 +3,11 @@ RSpec::Core::RakeTask.new(:rspec) do |t|
t.pattern = 'spec/lib/**/*_spec.rb'
end

if ENV.key?('RUBYSPEC')
warn "Did you mean RUBYSPECS=...? (RUBYSPEC was found among ENV variables)"
exit 1
end

module Testing
extend self