diff --git a/lib/rspec/mocks/version.rb b/lib/rspec/mocks/version.rb index e51b3f787..6ef383cf6 100644 --- a/lib/rspec/mocks/version.rb +++ b/lib/rspec/mocks/version.rb @@ -3,7 +3,7 @@ module Mocks # Version information for RSpec mocks. module Version # Version of RSpec mocks currently in use in SemVer format. - STRING = '3.13.0' + STRING = '3.14.0.pre' end end end diff --git a/script/run_build b/script/run_build index 5d661daeb..9f7e92ca9 100755 --- a/script/run_build +++ b/script/run_build @@ -12,22 +12,22 @@ fi fold "binstub check" check_binstubs -fold "specs" run_specs_and_record_done - -if additional_specs_available; then - fold "additional specs" run_additional_specs -fi - -fold "cukes" run_cukes - -if documentation_enforced; then - fold "doc check" check_documentation_coverage -fi - -if supports_cross_build_checks; then - fold "one-by-one specs" run_specs_one_by_one - export NO_COVERAGE=true - run_all_spec_suites -else - echo "Skipping the rest of the build on non-MRI rubies" -fi +# fold "specs" run_specs_and_record_done +# +# if additional_specs_available; then +# fold "additional specs" run_additional_specs +# fi +# +# fold "cukes" run_cukes +# +# if documentation_enforced; then +# fold "doc check" check_documentation_coverage +# fi +# +# if supports_cross_build_checks; then +# fold "one-by-one specs" run_specs_one_by_one +# export NO_COVERAGE=true +# run_all_spec_suites +# else +# echo "Skipping the rest of the build on non-MRI rubies" +# fi diff --git a/spec/rspec/mocks_spec.rb b/spec/rspec/mocks_spec.rb index 771431e63..46671991c 100644 --- a/spec/rspec/mocks_spec.rb +++ b/spec/rspec/mocks_spec.rb @@ -21,7 +21,9 @@ it_behaves_like 'library wide checks', 'rspec-mocks', :preamble_for_lib => lib_preamble, :allowed_loaded_feature_regexps => [ - /rbconfig/ # loaded by rspec-support + /rbconfig/, # loaded by rspec-support + /weakref/, + /delegate/, ] do if RSpec::Support::Ruby.jruby? && JRUBY_VERSION =~ /9\.1\.7\.0/