summaryrefslogtreecommitdiff
path: root/spec
AgeCommit message (Collapse)Author
2019-08-03[bundler/bundler] Remove unused filterDavid Rodríguez
https://github.com/bundler/bundler/commit/102d6229d4
2019-08-03[bundler/bundler] Reuse `gemfile` spec helperDavid Rodríguez
https://github.com/bundler/bundler/commit/22de94d3b4
2019-08-03[bundler/bundler] More specific assertionDavid Rodríguez
1.0.0 is such a common output, and it was hiding a crash in the test. https://github.com/bundler/bundler/commit/c688337e24
2019-08-03[bundler/bundler] Remove redundant assertionDavid Rodríguez
https://github.com/bundler/bundler/commit/7ac854dea1
2019-08-03[bundler/bundler] Make spec easier to debugDavid Rodríguez
https://github.com/bundler/bundler/commit/156629291e
2019-08-03[bundler/bundler] [Package] Ensure uninstallable gems are _never_ installedSamuel Giddins
https://github.com/bundler/bundler/commit/899aeeebb0
2019-08-03[bundler/bundler] [Package] Always resolve remotely for --all-platformsSamuel Giddins
https://github.com/bundler/bundler/commit/e45d2272ea
2019-08-03[bundler/bundler] Add missing mockDavid Rodríguez
I'm not sure this test is useful but since it's there, it should be complete. https://github.com/bundler/bundler/commit/3e350089db
2019-08-03[bundler/bundler] Improve spec to be more realisticDavid Rodríguez
https://github.com/bundler/bundler/commit/ca96316b97
2019-08-03[bundler/bundler] Clearer MissingRevision git errorsDavid Rodríguez
https://github.com/bundler/bundler/commit/b47d23edf5
2019-08-03[bundler/bundler] Generate new gem development dependencies in GemfileDavid Rodríguez
https://github.com/bundler/bundler/commit/02177d0e10
2019-08-03[bundler/bundler] Fix local variable nameDavid Rodríguez
https://github.com/bundler/bundler/commit/3df138318f
2019-08-03[bundler/bundler] Reuse `execute_bundle_gem` methodDavid Rodríguez
https://github.com/bundler/bundler/commit/773203ec5a
2019-08-03[bundler/bundler] Don't re-resolve locked platform specific gemsDavid Rodríguez
https://github.com/bundler/bundler/commit/7da2bf75f5
2019-08-03[bundler/bundler] Fix a typo on a spec commentDavid Rodríguez
https://github.com/bundler/bundler/commit/1a853ad6ac
2019-08-03[bundler/bundler] bundler/inline should always install gems to system pathrobuye
As discussed in the P/R, when `BUNDLE_PATH` env is set Bundler should still install gems to the system path. `GEM_HOME` can be used to provide different location if needed. The test is added to document expected behavior of `bundler/inline`. https://github.com/bundler/bundler/commit/ae419fd6f8
2019-08-03[bundler/bundler] Use real paths for `bundle clean`David Rodríguez
https://github.com/bundler/bundler/commit/0646f9e286
2019-08-03[bundler/bundler] Fix thread leak in compact index specsDavid Rodríguez
This spec was not stopping threads after itself. That would cause the previous spec in the file (that checks that no threads are left behind) to fail. https://github.com/bundler/bundler/commit/81ad85b92d
2019-08-03[bundler/bundler] Add `required_ruby_version` to gemspec templateMiklos Fazekas
https://github.com/bundler/bundler/commit/f47421f92d
2019-08-03[bundler/bundler] Factor out gemspec call inside `let`David Rodríguez
https://github.com/bundler/bundler/commit/ae0ac190aa
2019-08-03[bundler/bundler] Remove duplicated `let`'sDavid Rodríguez
https://github.com/bundler/bundler/commit/43ffaab796
2019-08-03[bundler/bundler] Fix `rake release` not prompting for OTP codeDavid Rodríguez
Co-authored-by: Colby Swandale <me@colby.fyi> Co-authored-by: Kevin Deisz <kevin.deisz@gmail.com> https://github.com/bundler/bundler/commit/1b2bbc7364
2019-08-03[bundler/bundler] Fix file:// handling under WindowsDavid Rodríguez
Windows paths do not start with a slash, so we add an extra slash to separate the host from the path in file:// urls. Otherwise "D:" is parsed as the host segment in the URI. The path for those URLs now starts with "/", so we ignore that leading character when using the URI's path. This reduces Windows CI spec failures from 429 to 355. https://github.com/bundler/bundler/commit/1b7e274cbc
2019-08-03[bundler/bundler] Normalize file:// handling in specsDavid Rodríguez
https://github.com/bundler/bundler/commit/5946d62ad0
2019-08-03[bundler/bundler] Use a clean gemspec for gem helper specsDavid Rodríguez
https://github.com/bundler/bundler/commit/f694fe7f67
2019-08-03[bundler/bundler] Move "on releasing" to a RSpec contextDavid Rodríguez
So we can later add more tests with the same setup. https://github.com/bundler/bundler/commit/21b4b6c49c
2019-08-03[bundler/bundler] Skip specs that need coloring on WindowsDavid Rodríguez
ANSI codes don't work there. https://github.com/bundler/bundler/commit/4f05417ca7
2019-08-03[bundler/bundler] Add missing no-color source specsDavid Rodríguez
For consistency. https://github.com/bundler/bundler/commit/279603ab42
2019-08-03[bundler/bundler] Be explicit about coloring in specs that need thatDavid Rodríguez
https://github.com/bundler/bundler/commit/a4d04506ab
2019-08-03[bundler/bundler] Respect color option when instantiating shellsDavid Rodríguez
Thor's base shell will be memoized the first time it is set. So if we instantiate a no-color shell first, further instantiations of a bundler shell will be initialized with a no-color shell by default. This is caused some sources specs to fail, depending on the order they run. See for example https://travis-ci.org/bundler/bundler/builds/500328994. What we do to fix it is to reset the shell unless no-color is explicitly specified. That way, further instantiations will rerun thor's internal logic to choose the default shell. https://github.com/bundler/bundler/commit/786b5d9894
2019-08-03[bundler/bundler] Added Ruby 2.6 to dsl.Hiroshi SHIBATA
https://github.com/bundler/bundler/commit/1892626858
2019-07-31File.realpath can raise ENOTDIRKoichi Sasada
2019-07-31Split in two spec examplesBenoit Daloze
2019-07-31Attempt to fix Hash#rehash specBenoit Daloze
2019-07-31delete a check on bad assumption.Koichi Sasada
If object was modified, but there is a case that hash values (#hash) are same between before modified and after modified objects.
2019-07-29Warn if using return at top-level with an argumentJeremy Evans
Fixes [Bug #14062]
2019-07-27Update to ruby/spec@0526d8fBenoit Daloze
2019-07-27Update to ruby/spec@875a09eBenoit Daloze
2019-07-27Initialize DST flagNobuyoshi Nakada
* time.c (zone_timelocal): initialize DST flag by asking the timezone object. [Bug #15988]
2019-07-16Removed twisted testsNobuyoshi Nakada
Why does only Process.daemon have these tests?
2019-07-15Fixed ruby/spec for Logger::LogDevice changes.Hiroshi SHIBATA
2019-07-11File::Stat uses Time#inspectNobuyoshi Nakada
2019-07-11Revert "parse.y: Deprecate flip-flops"Nobuyoshi Nakada
This reverts commit bae638ad5b782c44c80efe33834cb9039279af46. [Feature #5400]
2019-07-04Revert self-referencing finalizer warning [Feature #15974]Nobuyoshi Nakada
It has caused CI failures. * d0cd0866d82a58933e5dccd073c753c0c2ad4eb5 Disable GC during rb_objspace_reachable_object_p * 89cef1c56b3a0f9c5e6ccc22a5044477a4fd16c1 Version guard for [Feature #15974] * 796eeb6339952d92ae1b353d450c7883e589852d. Fix up [Feature #15974] * 928260c2a613bbdd4402c300e0bf86ae7562e52a. Warn in verbose mode on defining a finalizer that captures the object
2019-07-03Version guard for [Feature #15974]Nobuyoshi Nakada
2019-07-03Warn in verbose mode on defining a finalizer that captures the objectChris Seaton
[Feature #15974] Closes: https://github.com/ruby/ruby/pull/2264
2019-07-01Prefer master rather than trunk in README [ci skip]Takashi Kokubun
2019-06-29Fix predicate to assert if object is sameNobuyoshi Nakada
2019-06-29Fix predicate to assert if object is sameNobuyoshi Nakada
2019-06-27Update to ruby/spec@94d98ffBenoit Daloze