Created
May 12, 2017 00:16
-
-
Save colby-swandale/6173b0221ad91a2168ef27b5c08dd089 to your computer and use it in GitHub Desktop.
bundle exec spec breaking on local
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
› bin/rspec spec/commands/exec_spec.rb -f progress | |
Run options: exclude {:rubygems_master=>true, :git=>"=< 2.12.2", :rubygems=>"=< 2.6.8", :ruby=>"=< 2.4.0", :realworld=>true, :sudo=>true} | |
........................FFFFF.....FFFFF.....FFFFF.....FFFFF.....................*... | |
Retried examples: 0 | |
Pending: (Failures listed here are expected and do not affect your suite's status) | |
1) bundle exec `load`ing a ruby file instead of `exec`ing regarding $0 and __FILE__ when the path is relative with a leading ./ relative paths with ./ have absolute __FILE__ | |
# Not yet implemented | |
# ./spec/commands/exec_spec.rb:638 | |
Failures: | |
1) bundle exec with help flags when e is used shows bundle-exec's man page when --help is between exec and the executable | |
Failure/Error: expect(out).to include(%(["#{root}/man/bundle-exec.1"])) | |
expected "Usage:\n bundle exec [OPTIONS]\n\nOptions:\n [--keep-file-descriptors], [--no-keep-file-descri...quire and call the bundled gems as if they were installed into the system wide Rubygems repository." to include "[\"/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1\"]" | |
Diff: | |
@@ -1,2 +1,12 @@ | |
-["/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1"] | |
+Usage: | |
+ bundle exec [OPTIONS] | |
+ | |
+Options: | |
+ [--keep-file-descriptors], [--no-keep-file-descriptors] | |
+ [--no-color] # Disable colorization in output | |
+ -r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
+ -V, [--verbose], [--no-verbose] # Enable verbose output mode | |
+ | |
+Description: | |
+ Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
Commands: | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-1.0.0.gem' | |
Rack's post install message | |
Successfully installed rack-1.0.0 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-0.9.1.gem' | |
Rack's post install message | |
Successfully installed rack-0.9.1 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle install --retry 0 --no-color | |
Resolving dependencies... | |
Using rack 1.0.0 | |
Using bundler 1.15.0.pre.2 | |
Bundle complete! 1 Gemfile dependency, 2 gems now installed. | |
Use `bundle info [gemname]` to see where a bundled gem is installed. | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle e --help cat | |
Usage: | |
bundle exec [OPTIONS] | |
Options: | |
[--keep-file-descriptors], [--no-keep-file-descriptors] | |
[--no-color] # Disable colorization in output | |
-r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
-V, [--verbose], [--no-verbose] # Enable verbose output mode | |
Description: | |
Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
# $? => 0 | |
# ./spec/commands/exec_spec.rb:301:in `block (5 levels) in <top (required)>' | |
2) bundle exec with help flags when e is used shows bundle-exec's man page when --help is before exec | |
Failure/Error: expect(out).to include(%(["#{root}/man/bundle-exec.1"])) | |
expected "Usage:\n bundle exec [OPTIONS]\n\nOptions:\n [--keep-file-descriptors], [--no-keep-file-descri...quire and call the bundled gems as if they were installed into the system wide Rubygems repository." to include "[\"/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1\"]" | |
Diff: | |
@@ -1,2 +1,12 @@ | |
-["/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1"] | |
+Usage: | |
+ bundle exec [OPTIONS] | |
+ | |
+Options: | |
+ [--keep-file-descriptors], [--no-keep-file-descriptors] | |
+ [--no-color] # Disable colorization in output | |
+ -r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
+ -V, [--verbose], [--no-verbose] # Enable verbose output mode | |
+ | |
+Description: | |
+ Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
Commands: | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-1.0.0.gem' | |
Rack's post install message | |
Successfully installed rack-1.0.0 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-0.9.1.gem' | |
Rack's post install message | |
Successfully installed rack-0.9.1 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle install --retry 0 --no-color | |
Resolving dependencies... | |
Using rack 1.0.0 | |
Using bundler 1.15.0.pre.2 | |
Bundle complete! 1 Gemfile dependency, 2 gems now installed. | |
Use `bundle info [gemname]` to see where a bundled gem is installed. | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle --help e --no-color | |
Usage: | |
bundle exec [OPTIONS] | |
Options: | |
[--keep-file-descriptors], [--no-keep-file-descriptors] | |
[--no-color] # Disable colorization in output | |
-r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
-V, [--verbose], [--no-verbose] # Enable verbose output mode | |
Description: | |
Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
# $? => 0 | |
# ./spec/commands/exec_spec.rb:308:in `block (5 levels) in <top (required)>' | |
3) bundle exec with help flags when e is used shows bundle-exec's man page when -h is before exec | |
Failure/Error: expect(out).to include(%(["#{root}/man/bundle-exec.1"])) | |
expected "Usage:\n bundle exec [OPTIONS]\n\nOptions:\n [--keep-file-descriptors], [--no-keep-file-descri...quire and call the bundled gems as if they were installed into the system wide Rubygems repository." to include "[\"/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1\"]" | |
Diff: | |
@@ -1,2 +1,12 @@ | |
-["/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1"] | |
+Usage: | |
+ bundle exec [OPTIONS] | |
+ | |
+Options: | |
+ [--keep-file-descriptors], [--no-keep-file-descriptors] | |
+ [--no-color] # Disable colorization in output | |
+ -r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
+ -V, [--verbose], [--no-verbose] # Enable verbose output mode | |
+ | |
+Description: | |
+ Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
Commands: | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-1.0.0.gem' | |
Rack's post install message | |
Successfully installed rack-1.0.0 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-0.9.1.gem' | |
Rack's post install message | |
Successfully installed rack-0.9.1 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle install --retry 0 --no-color | |
Resolving dependencies... | |
Using rack 1.0.0 | |
Using bundler 1.15.0.pre.2 | |
Bundle complete! 1 Gemfile dependency, 2 gems now installed. | |
Use `bundle info [gemname]` to see where a bundled gem is installed. | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle -h e --no-color | |
Usage: | |
bundle exec [OPTIONS] | |
Options: | |
[--keep-file-descriptors], [--no-keep-file-descriptors] | |
[--no-color] # Disable colorization in output | |
-r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
-V, [--verbose], [--no-verbose] # Enable verbose output mode | |
Description: | |
Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
# $? => 0 | |
# ./spec/commands/exec_spec.rb:315:in `block (5 levels) in <top (required)>' | |
4) bundle exec with help flags when e is used shows bundle-exec's man page when --help is after exec | |
Failure/Error: expect(out).to include(%(["#{root}/man/bundle-exec.1"])) | |
expected "Usage:\n bundle exec [OPTIONS]\n\nOptions:\n [--keep-file-descriptors], [--no-keep-file-descri...quire and call the bundled gems as if they were installed into the system wide Rubygems repository." to include "[\"/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1\"]" | |
Diff: | |
@@ -1,2 +1,12 @@ | |
-["/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1"] | |
+Usage: | |
+ bundle exec [OPTIONS] | |
+ | |
+Options: | |
+ [--keep-file-descriptors], [--no-keep-file-descriptors] | |
+ [--no-color] # Disable colorization in output | |
+ -r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
+ -V, [--verbose], [--no-verbose] # Enable verbose output mode | |
+ | |
+Description: | |
+ Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
Commands: | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-1.0.0.gem' | |
Rack's post install message | |
Successfully installed rack-1.0.0 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-0.9.1.gem' | |
Rack's post install message | |
Successfully installed rack-0.9.1 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle install --retry 0 --no-color | |
Resolving dependencies... | |
Using rack 1.0.0 | |
Using bundler 1.15.0.pre.2 | |
Bundle complete! 1 Gemfile dependency, 2 gems now installed. | |
Use `bundle info [gemname]` to see where a bundled gem is installed. | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle e --help | |
Usage: | |
bundle exec [OPTIONS] | |
Options: | |
[--keep-file-descriptors], [--no-keep-file-descriptors] | |
[--no-color] # Disable colorization in output | |
-r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
-V, [--verbose], [--no-verbose] # Enable verbose output mode | |
Description: | |
Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
# $? => 0 | |
# ./spec/commands/exec_spec.rb:322:in `block (5 levels) in <top (required)>' | |
5) bundle exec with help flags when e is used shows bundle-exec's man page when -h is after exec | |
Failure/Error: expect(out).to include(%(["#{root}/man/bundle-exec.1"])) | |
expected "Usage:\n bundle exec [OPTIONS]\n\nOptions:\n [--keep-file-descriptors], [--no-keep-file-descri...quire and call the bundled gems as if they were installed into the system wide Rubygems repository." to include "[\"/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1\"]" | |
Diff: | |
@@ -1,2 +1,12 @@ | |
-["/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1"] | |
+Usage: | |
+ bundle exec [OPTIONS] | |
+ | |
+Options: | |
+ [--keep-file-descriptors], [--no-keep-file-descriptors] | |
+ [--no-color] # Disable colorization in output | |
+ -r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
+ -V, [--verbose], [--no-verbose] # Enable verbose output mode | |
+ | |
+Description: | |
+ Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
Commands: | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-1.0.0.gem' | |
Rack's post install message | |
Successfully installed rack-1.0.0 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-0.9.1.gem' | |
Rack's post install message | |
Successfully installed rack-0.9.1 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle install --retry 0 --no-color | |
Resolving dependencies... | |
Using rack 1.0.0 | |
Using bundler 1.15.0.pre.2 | |
Bundle complete! 1 Gemfile dependency, 2 gems now installed. | |
Use `bundle info [gemname]` to see where a bundled gem is installed. | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle e -h | |
Usage: | |
bundle exec [OPTIONS] | |
Options: | |
[--keep-file-descriptors], [--no-keep-file-descriptors] | |
[--no-color] # Disable colorization in output | |
-r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
-V, [--verbose], [--no-verbose] # Enable verbose output mode | |
Description: | |
Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
# $? => 0 | |
# ./spec/commands/exec_spec.rb:329:in `block (5 levels) in <top (required)>' | |
6) bundle exec with help flags when ex is used shows bundle-exec's man page when --help is between exec and the executable | |
Failure/Error: expect(out).to include(%(["#{root}/man/bundle-exec.1"])) | |
expected "Usage:\n bundle exec [OPTIONS]\n\nOptions:\n [--keep-file-descriptors], [--no-keep-file-descri...quire and call the bundled gems as if they were installed into the system wide Rubygems repository." to include "[\"/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1\"]" | |
Diff: | |
@@ -1,2 +1,12 @@ | |
-["/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1"] | |
+Usage: | |
+ bundle exec [OPTIONS] | |
+ | |
+Options: | |
+ [--keep-file-descriptors], [--no-keep-file-descriptors] | |
+ [--no-color] # Disable colorization in output | |
+ -r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
+ -V, [--verbose], [--no-verbose] # Enable verbose output mode | |
+ | |
+Description: | |
+ Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
Commands: | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-1.0.0.gem' | |
Rack's post install message | |
Successfully installed rack-1.0.0 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-0.9.1.gem' | |
Rack's post install message | |
Successfully installed rack-0.9.1 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle install --retry 0 --no-color | |
Resolving dependencies... | |
Using rack 1.0.0 | |
Using bundler 1.15.0.pre.2 | |
Bundle complete! 1 Gemfile dependency, 2 gems now installed. | |
Use `bundle info [gemname]` to see where a bundled gem is installed. | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle ex --help cat | |
Usage: | |
bundle exec [OPTIONS] | |
Options: | |
[--keep-file-descriptors], [--no-keep-file-descriptors] | |
[--no-color] # Disable colorization in output | |
-r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
-V, [--verbose], [--no-verbose] # Enable verbose output mode | |
Description: | |
Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
# $? => 0 | |
# ./spec/commands/exec_spec.rb:301:in `block (5 levels) in <top (required)>' | |
7) bundle exec with help flags when ex is used shows bundle-exec's man page when --help is before exec | |
Failure/Error: expect(out).to include(%(["#{root}/man/bundle-exec.1"])) | |
expected "Usage:\n bundle exec [OPTIONS]\n\nOptions:\n [--keep-file-descriptors], [--no-keep-file-descri...quire and call the bundled gems as if they were installed into the system wide Rubygems repository." to include "[\"/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1\"]" | |
Diff: | |
@@ -1,2 +1,12 @@ | |
-["/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1"] | |
+Usage: | |
+ bundle exec [OPTIONS] | |
+ | |
+Options: | |
+ [--keep-file-descriptors], [--no-keep-file-descriptors] | |
+ [--no-color] # Disable colorization in output | |
+ -r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
+ -V, [--verbose], [--no-verbose] # Enable verbose output mode | |
+ | |
+Description: | |
+ Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
Commands: | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-1.0.0.gem' | |
Rack's post install message | |
Successfully installed rack-1.0.0 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-0.9.1.gem' | |
Rack's post install message | |
Successfully installed rack-0.9.1 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle install --retry 0 --no-color | |
Resolving dependencies... | |
Using rack 1.0.0 | |
Using bundler 1.15.0.pre.2 | |
Bundle complete! 1 Gemfile dependency, 2 gems now installed. | |
Use `bundle info [gemname]` to see where a bundled gem is installed. | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle --help ex --no-color | |
Usage: | |
bundle exec [OPTIONS] | |
Options: | |
[--keep-file-descriptors], [--no-keep-file-descriptors] | |
[--no-color] # Disable colorization in output | |
-r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
-V, [--verbose], [--no-verbose] # Enable verbose output mode | |
Description: | |
Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
# $? => 0 | |
# ./spec/commands/exec_spec.rb:308:in `block (5 levels) in <top (required)>' | |
8) bundle exec with help flags when ex is used shows bundle-exec's man page when -h is before exec | |
Failure/Error: expect(out).to include(%(["#{root}/man/bundle-exec.1"])) | |
expected "Usage:\n bundle exec [OPTIONS]\n\nOptions:\n [--keep-file-descriptors], [--no-keep-file-descri...quire and call the bundled gems as if they were installed into the system wide Rubygems repository." to include "[\"/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1\"]" | |
Diff: | |
@@ -1,2 +1,12 @@ | |
-["/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1"] | |
+Usage: | |
+ bundle exec [OPTIONS] | |
+ | |
+Options: | |
+ [--keep-file-descriptors], [--no-keep-file-descriptors] | |
+ [--no-color] # Disable colorization in output | |
+ -r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
+ -V, [--verbose], [--no-verbose] # Enable verbose output mode | |
+ | |
+Description: | |
+ Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
Commands: | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-1.0.0.gem' | |
Rack's post install message | |
Successfully installed rack-1.0.0 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-0.9.1.gem' | |
Rack's post install message | |
Successfully installed rack-0.9.1 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle install --retry 0 --no-color | |
Resolving dependencies... | |
Using rack 1.0.0 | |
Using bundler 1.15.0.pre.2 | |
Bundle complete! 1 Gemfile dependency, 2 gems now installed. | |
Use `bundle info [gemname]` to see where a bundled gem is installed. | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle -h ex --no-color | |
Usage: | |
bundle exec [OPTIONS] | |
Options: | |
[--keep-file-descriptors], [--no-keep-file-descriptors] | |
[--no-color] # Disable colorization in output | |
-r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
-V, [--verbose], [--no-verbose] # Enable verbose output mode | |
Description: | |
Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
# $? => 0 | |
# ./spec/commands/exec_spec.rb:315:in `block (5 levels) in <top (required)>' | |
9) bundle exec with help flags when ex is used shows bundle-exec's man page when --help is after exec | |
Failure/Error: expect(out).to include(%(["#{root}/man/bundle-exec.1"])) | |
expected "Usage:\n bundle exec [OPTIONS]\n\nOptions:\n [--keep-file-descriptors], [--no-keep-file-descri...quire and call the bundled gems as if they were installed into the system wide Rubygems repository." to include "[\"/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1\"]" | |
Diff: | |
@@ -1,2 +1,12 @@ | |
-["/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1"] | |
+Usage: | |
+ bundle exec [OPTIONS] | |
+ | |
+Options: | |
+ [--keep-file-descriptors], [--no-keep-file-descriptors] | |
+ [--no-color] # Disable colorization in output | |
+ -r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
+ -V, [--verbose], [--no-verbose] # Enable verbose output mode | |
+ | |
+Description: | |
+ Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
Commands: | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-1.0.0.gem' | |
Rack's post install message | |
Successfully installed rack-1.0.0 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-0.9.1.gem' | |
Rack's post install message | |
Successfully installed rack-0.9.1 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle install --retry 0 --no-color | |
Resolving dependencies... | |
Using rack 1.0.0 | |
Using bundler 1.15.0.pre.2 | |
Bundle complete! 1 Gemfile dependency, 2 gems now installed. | |
Use `bundle info [gemname]` to see where a bundled gem is installed. | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle ex --help | |
Usage: | |
bundle exec [OPTIONS] | |
Options: | |
[--keep-file-descriptors], [--no-keep-file-descriptors] | |
[--no-color] # Disable colorization in output | |
-r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
-V, [--verbose], [--no-verbose] # Enable verbose output mode | |
Description: | |
Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
# $? => 0 | |
# ./spec/commands/exec_spec.rb:322:in `block (5 levels) in <top (required)>' | |
10) bundle exec with help flags when ex is used shows bundle-exec's man page when -h is after exec | |
Failure/Error: expect(out).to include(%(["#{root}/man/bundle-exec.1"])) | |
expected "Usage:\n bundle exec [OPTIONS]\n\nOptions:\n [--keep-file-descriptors], [--no-keep-file-descri...quire and call the bundled gems as if they were installed into the system wide Rubygems repository." to include "[\"/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1\"]" | |
Diff: | |
@@ -1,2 +1,12 @@ | |
-["/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1"] | |
+Usage: | |
+ bundle exec [OPTIONS] | |
+ | |
+Options: | |
+ [--keep-file-descriptors], [--no-keep-file-descriptors] | |
+ [--no-color] # Disable colorization in output | |
+ -r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
+ -V, [--verbose], [--no-verbose] # Enable verbose output mode | |
+ | |
+Description: | |
+ Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
Commands: | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-1.0.0.gem' | |
Rack's post install message | |
Successfully installed rack-1.0.0 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-0.9.1.gem' | |
Rack's post install message | |
Successfully installed rack-0.9.1 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle install --retry 0 --no-color | |
Resolving dependencies... | |
Using rack 1.0.0 | |
Using bundler 1.15.0.pre.2 | |
Bundle complete! 1 Gemfile dependency, 2 gems now installed. | |
Use `bundle info [gemname]` to see where a bundled gem is installed. | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle ex -h | |
Usage: | |
bundle exec [OPTIONS] | |
Options: | |
[--keep-file-descriptors], [--no-keep-file-descriptors] | |
[--no-color] # Disable colorization in output | |
-r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
-V, [--verbose], [--no-verbose] # Enable verbose output mode | |
Description: | |
Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
# $? => 0 | |
# ./spec/commands/exec_spec.rb:329:in `block (5 levels) in <top (required)>' | |
11) bundle exec with help flags when exe is used shows bundle-exec's man page when --help is between exec and the executable | |
Failure/Error: expect(out).to include(%(["#{root}/man/bundle-exec.1"])) | |
expected "Usage:\n bundle exec [OPTIONS]\n\nOptions:\n [--keep-file-descriptors], [--no-keep-file-descri...quire and call the bundled gems as if they were installed into the system wide Rubygems repository." to include "[\"/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1\"]" | |
Diff: | |
@@ -1,2 +1,12 @@ | |
-["/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1"] | |
+Usage: | |
+ bundle exec [OPTIONS] | |
+ | |
+Options: | |
+ [--keep-file-descriptors], [--no-keep-file-descriptors] | |
+ [--no-color] # Disable colorization in output | |
+ -r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
+ -V, [--verbose], [--no-verbose] # Enable verbose output mode | |
+ | |
+Description: | |
+ Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
Commands: | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-1.0.0.gem' | |
Rack's post install message | |
Successfully installed rack-1.0.0 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-0.9.1.gem' | |
Rack's post install message | |
Successfully installed rack-0.9.1 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle install --retry 0 --no-color | |
Resolving dependencies... | |
Using rack 1.0.0 | |
Using bundler 1.15.0.pre.2 | |
Bundle complete! 1 Gemfile dependency, 2 gems now installed. | |
Use `bundle info [gemname]` to see where a bundled gem is installed. | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle exe --help cat | |
Usage: | |
bundle exec [OPTIONS] | |
Options: | |
[--keep-file-descriptors], [--no-keep-file-descriptors] | |
[--no-color] # Disable colorization in output | |
-r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
-V, [--verbose], [--no-verbose] # Enable verbose output mode | |
Description: | |
Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
# $? => 0 | |
# ./spec/commands/exec_spec.rb:301:in `block (5 levels) in <top (required)>' | |
12) bundle exec with help flags when exe is used shows bundle-exec's man page when --help is before exec | |
Failure/Error: expect(out).to include(%(["#{root}/man/bundle-exec.1"])) | |
expected "Usage:\n bundle exec [OPTIONS]\n\nOptions:\n [--keep-file-descriptors], [--no-keep-file-descri...quire and call the bundled gems as if they were installed into the system wide Rubygems repository." to include "[\"/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1\"]" | |
Diff: | |
@@ -1,2 +1,12 @@ | |
-["/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1"] | |
+Usage: | |
+ bundle exec [OPTIONS] | |
+ | |
+Options: | |
+ [--keep-file-descriptors], [--no-keep-file-descriptors] | |
+ [--no-color] # Disable colorization in output | |
+ -r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
+ -V, [--verbose], [--no-verbose] # Enable verbose output mode | |
+ | |
+Description: | |
+ Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
Commands: | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-1.0.0.gem' | |
Rack's post install message | |
Successfully installed rack-1.0.0 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-0.9.1.gem' | |
Rack's post install message | |
Successfully installed rack-0.9.1 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle install --retry 0 --no-color | |
Resolving dependencies... | |
Using rack 1.0.0 | |
Using bundler 1.15.0.pre.2 | |
Bundle complete! 1 Gemfile dependency, 2 gems now installed. | |
Use `bundle info [gemname]` to see where a bundled gem is installed. | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle --help exe --no-color | |
Usage: | |
bundle exec [OPTIONS] | |
Options: | |
[--keep-file-descriptors], [--no-keep-file-descriptors] | |
[--no-color] # Disable colorization in output | |
-r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
-V, [--verbose], [--no-verbose] # Enable verbose output mode | |
Description: | |
Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
# $? => 0 | |
# ./spec/commands/exec_spec.rb:308:in `block (5 levels) in <top (required)>' | |
13) bundle exec with help flags when exe is used shows bundle-exec's man page when -h is before exec | |
Failure/Error: expect(out).to include(%(["#{root}/man/bundle-exec.1"])) | |
expected "Usage:\n bundle exec [OPTIONS]\n\nOptions:\n [--keep-file-descriptors], [--no-keep-file-descri...quire and call the bundled gems as if they were installed into the system wide Rubygems repository." to include "[\"/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1\"]" | |
Diff: | |
@@ -1,2 +1,12 @@ | |
-["/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1"] | |
+Usage: | |
+ bundle exec [OPTIONS] | |
+ | |
+Options: | |
+ [--keep-file-descriptors], [--no-keep-file-descriptors] | |
+ [--no-color] # Disable colorization in output | |
+ -r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
+ -V, [--verbose], [--no-verbose] # Enable verbose output mode | |
+ | |
+Description: | |
+ Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
Commands: | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-1.0.0.gem' | |
Rack's post install message | |
Successfully installed rack-1.0.0 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-0.9.1.gem' | |
Rack's post install message | |
Successfully installed rack-0.9.1 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle install --retry 0 --no-color | |
Resolving dependencies... | |
Using rack 1.0.0 | |
Using bundler 1.15.0.pre.2 | |
Bundle complete! 1 Gemfile dependency, 2 gems now installed. | |
Use `bundle info [gemname]` to see where a bundled gem is installed. | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle -h exe --no-color | |
Usage: | |
bundle exec [OPTIONS] | |
Options: | |
[--keep-file-descriptors], [--no-keep-file-descriptors] | |
[--no-color] # Disable colorization in output | |
-r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
-V, [--verbose], [--no-verbose] # Enable verbose output mode | |
Description: | |
Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
# $? => 0 | |
# ./spec/commands/exec_spec.rb:315:in `block (5 levels) in <top (required)>' | |
14) bundle exec with help flags when exe is used shows bundle-exec's man page when --help is after exec | |
Failure/Error: expect(out).to include(%(["#{root}/man/bundle-exec.1"])) | |
expected "Usage:\n bundle exec [OPTIONS]\n\nOptions:\n [--keep-file-descriptors], [--no-keep-file-descri...quire and call the bundled gems as if they were installed into the system wide Rubygems repository." to include "[\"/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1\"]" | |
Diff: | |
@@ -1,2 +1,12 @@ | |
-["/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1"] | |
+Usage: | |
+ bundle exec [OPTIONS] | |
+ | |
+Options: | |
+ [--keep-file-descriptors], [--no-keep-file-descriptors] | |
+ [--no-color] # Disable colorization in output | |
+ -r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
+ -V, [--verbose], [--no-verbose] # Enable verbose output mode | |
+ | |
+Description: | |
+ Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
Commands: | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-1.0.0.gem' | |
Rack's post install message | |
Successfully installed rack-1.0.0 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-0.9.1.gem' | |
Rack's post install message | |
Successfully installed rack-0.9.1 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle install --retry 0 --no-color | |
Resolving dependencies... | |
Using rack 1.0.0 | |
Using bundler 1.15.0.pre.2 | |
Bundle complete! 1 Gemfile dependency, 2 gems now installed. | |
Use `bundle info [gemname]` to see where a bundled gem is installed. | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle exe --help | |
Usage: | |
bundle exec [OPTIONS] | |
Options: | |
[--keep-file-descriptors], [--no-keep-file-descriptors] | |
[--no-color] # Disable colorization in output | |
-r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
-V, [--verbose], [--no-verbose] # Enable verbose output mode | |
Description: | |
Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
# $? => 0 | |
# ./spec/commands/exec_spec.rb:322:in `block (5 levels) in <top (required)>' | |
15) bundle exec with help flags when exe is used shows bundle-exec's man page when -h is after exec | |
Failure/Error: expect(out).to include(%(["#{root}/man/bundle-exec.1"])) | |
expected "Usage:\n bundle exec [OPTIONS]\n\nOptions:\n [--keep-file-descriptors], [--no-keep-file-descri...quire and call the bundled gems as if they were installed into the system wide Rubygems repository." to include "[\"/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1\"]" | |
Diff: | |
@@ -1,2 +1,12 @@ | |
-["/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1"] | |
+Usage: | |
+ bundle exec [OPTIONS] | |
+ | |
+Options: | |
+ [--keep-file-descriptors], [--no-keep-file-descriptors] | |
+ [--no-color] # Disable colorization in output | |
+ -r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
+ -V, [--verbose], [--no-verbose] # Enable verbose output mode | |
+ | |
+Description: | |
+ Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
Commands: | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-1.0.0.gem' | |
Rack's post install message | |
Successfully installed rack-1.0.0 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-0.9.1.gem' | |
Rack's post install message | |
Successfully installed rack-0.9.1 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle install --retry 0 --no-color | |
Resolving dependencies... | |
Using rack 1.0.0 | |
Using bundler 1.15.0.pre.2 | |
Bundle complete! 1 Gemfile dependency, 2 gems now installed. | |
Use `bundle info [gemname]` to see where a bundled gem is installed. | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle exe -h | |
Usage: | |
bundle exec [OPTIONS] | |
Options: | |
[--keep-file-descriptors], [--no-keep-file-descriptors] | |
[--no-color] # Disable colorization in output | |
-r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
-V, [--verbose], [--no-verbose] # Enable verbose output mode | |
Description: | |
Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
# $? => 0 | |
# ./spec/commands/exec_spec.rb:329:in `block (5 levels) in <top (required)>' | |
16) bundle exec with help flags when exec is used shows bundle-exec's man page when --help is between exec and the executable | |
Failure/Error: expect(out).to include(%(["#{root}/man/bundle-exec.1"])) | |
expected "Usage:\n bundle exec [OPTIONS]\n\nOptions:\n [--keep-file-descriptors], [--no-keep-file-descri...quire and call the bundled gems as if they were installed into the system wide Rubygems repository." to include "[\"/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1\"]" | |
Diff: | |
@@ -1,2 +1,12 @@ | |
-["/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1"] | |
+Usage: | |
+ bundle exec [OPTIONS] | |
+ | |
+Options: | |
+ [--keep-file-descriptors], [--no-keep-file-descriptors] | |
+ [--no-color] # Disable colorization in output | |
+ -r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
+ -V, [--verbose], [--no-verbose] # Enable verbose output mode | |
+ | |
+Description: | |
+ Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
Commands: | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-1.0.0.gem' | |
Rack's post install message | |
Successfully installed rack-1.0.0 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-0.9.1.gem' | |
Rack's post install message | |
Successfully installed rack-0.9.1 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle install --retry 0 --no-color | |
Resolving dependencies... | |
Using rack 1.0.0 | |
Using bundler 1.15.0.pre.2 | |
Bundle complete! 1 Gemfile dependency, 2 gems now installed. | |
Use `bundle info [gemname]` to see where a bundled gem is installed. | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle exec --help cat | |
Usage: | |
bundle exec [OPTIONS] | |
Options: | |
[--keep-file-descriptors], [--no-keep-file-descriptors] | |
[--no-color] # Disable colorization in output | |
-r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
-V, [--verbose], [--no-verbose] # Enable verbose output mode | |
Description: | |
Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
# $? => 0 | |
# ./spec/commands/exec_spec.rb:301:in `block (5 levels) in <top (required)>' | |
17) bundle exec with help flags when exec is used shows bundle-exec's man page when --help is before exec | |
Failure/Error: expect(out).to include(%(["#{root}/man/bundle-exec.1"])) | |
expected "Usage:\n bundle exec [OPTIONS]\n\nOptions:\n [--keep-file-descriptors], [--no-keep-file-descri...quire and call the bundled gems as if they were installed into the system wide Rubygems repository." to include "[\"/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1\"]" | |
Diff: | |
@@ -1,2 +1,12 @@ | |
-["/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1"] | |
+Usage: | |
+ bundle exec [OPTIONS] | |
+ | |
+Options: | |
+ [--keep-file-descriptors], [--no-keep-file-descriptors] | |
+ [--no-color] # Disable colorization in output | |
+ -r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
+ -V, [--verbose], [--no-verbose] # Enable verbose output mode | |
+ | |
+Description: | |
+ Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
Commands: | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-1.0.0.gem' | |
Rack's post install message | |
Successfully installed rack-1.0.0 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-0.9.1.gem' | |
Rack's post install message | |
Successfully installed rack-0.9.1 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle install --retry 0 --no-color | |
Resolving dependencies... | |
Using rack 1.0.0 | |
Using bundler 1.15.0.pre.2 | |
Bundle complete! 1 Gemfile dependency, 2 gems now installed. | |
Use `bundle info [gemname]` to see where a bundled gem is installed. | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle --help exec --no-color | |
Usage: | |
bundle exec [OPTIONS] | |
Options: | |
[--keep-file-descriptors], [--no-keep-file-descriptors] | |
[--no-color] # Disable colorization in output | |
-r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
-V, [--verbose], [--no-verbose] # Enable verbose output mode | |
Description: | |
Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
# $? => 0 | |
# ./spec/commands/exec_spec.rb:308:in `block (5 levels) in <top (required)>' | |
18) bundle exec with help flags when exec is used shows bundle-exec's man page when -h is before exec | |
Failure/Error: expect(out).to include(%(["#{root}/man/bundle-exec.1"])) | |
expected "Usage:\n bundle exec [OPTIONS]\n\nOptions:\n [--keep-file-descriptors], [--no-keep-file-descri...quire and call the bundled gems as if they were installed into the system wide Rubygems repository." to include "[\"/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1\"]" | |
Diff: | |
@@ -1,2 +1,12 @@ | |
-["/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1"] | |
+Usage: | |
+ bundle exec [OPTIONS] | |
+ | |
+Options: | |
+ [--keep-file-descriptors], [--no-keep-file-descriptors] | |
+ [--no-color] # Disable colorization in output | |
+ -r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
+ -V, [--verbose], [--no-verbose] # Enable verbose output mode | |
+ | |
+Description: | |
+ Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
Commands: | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-1.0.0.gem' | |
Rack's post install message | |
Successfully installed rack-1.0.0 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-0.9.1.gem' | |
Rack's post install message | |
Successfully installed rack-0.9.1 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle install --retry 0 --no-color | |
Resolving dependencies... | |
Using rack 1.0.0 | |
Using bundler 1.15.0.pre.2 | |
Bundle complete! 1 Gemfile dependency, 2 gems now installed. | |
Use `bundle info [gemname]` to see where a bundled gem is installed. | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle -h exec --no-color | |
Usage: | |
bundle exec [OPTIONS] | |
Options: | |
[--keep-file-descriptors], [--no-keep-file-descriptors] | |
[--no-color] # Disable colorization in output | |
-r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
-V, [--verbose], [--no-verbose] # Enable verbose output mode | |
Description: | |
Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
# $? => 0 | |
# ./spec/commands/exec_spec.rb:315:in `block (5 levels) in <top (required)>' | |
19) bundle exec with help flags when exec is used shows bundle-exec's man page when --help is after exec | |
Failure/Error: expect(out).to include(%(["#{root}/man/bundle-exec.1"])) | |
expected "Usage:\n bundle exec [OPTIONS]\n\nOptions:\n [--keep-file-descriptors], [--no-keep-file-descri...quire and call the bundled gems as if they were installed into the system wide Rubygems repository." to include "[\"/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1\"]" | |
Diff: | |
@@ -1,2 +1,12 @@ | |
-["/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1"] | |
+Usage: | |
+ bundle exec [OPTIONS] | |
+ | |
+Options: | |
+ [--keep-file-descriptors], [--no-keep-file-descriptors] | |
+ [--no-color] # Disable colorization in output | |
+ -r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
+ -V, [--verbose], [--no-verbose] # Enable verbose output mode | |
+ | |
+Description: | |
+ Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
Commands: | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-1.0.0.gem' | |
Rack's post install message | |
Successfully installed rack-1.0.0 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-0.9.1.gem' | |
Rack's post install message | |
Successfully installed rack-0.9.1 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle install --retry 0 --no-color | |
Resolving dependencies... | |
Using rack 1.0.0 | |
Using bundler 1.15.0.pre.2 | |
Bundle complete! 1 Gemfile dependency, 2 gems now installed. | |
Use `bundle info [gemname]` to see where a bundled gem is installed. | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle exec --help | |
Usage: | |
bundle exec [OPTIONS] | |
Options: | |
[--keep-file-descriptors], [--no-keep-file-descriptors] | |
[--no-color] # Disable colorization in output | |
-r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
-V, [--verbose], [--no-verbose] # Enable verbose output mode | |
Description: | |
Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
# $? => 0 | |
# ./spec/commands/exec_spec.rb:322:in `block (5 levels) in <top (required)>' | |
20) bundle exec with help flags when exec is used shows bundle-exec's man page when -h is after exec | |
Failure/Error: expect(out).to include(%(["#{root}/man/bundle-exec.1"])) | |
expected "Usage:\n bundle exec [OPTIONS]\n\nOptions:\n [--keep-file-descriptors], [--no-keep-file-descri...quire and call the bundled gems as if they were installed into the system wide Rubygems repository." to include "[\"/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1\"]" | |
Diff: | |
@@ -1,2 +1,12 @@ | |
-["/Users/colby/Desktop/Projects/bundler/man/bundle-exec.1"] | |
+Usage: | |
+ bundle exec [OPTIONS] | |
+ | |
+Options: | |
+ [--keep-file-descriptors], [--no-keep-file-descriptors] | |
+ [--no-color] # Disable colorization in output | |
+ -r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
+ -V, [--verbose], [--no-verbose] # Enable verbose output mode | |
+ | |
+Description: | |
+ Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
Commands: | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-1.0.0.gem' | |
Rack's post install message | |
Successfully installed rack-1.0.0 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -rubygems -S gem --backtrace install --no-rdoc --no-ri --ignore-dependencies '/Users/colby/Desktop/Projects/bundler/tmp/gems/remote1/gems/rack-0.9.1.gem' | |
Rack's post install message | |
Successfully installed rack-0.9.1 | |
1 gem installed | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle install --retry 0 --no-color | |
Resolving dependencies... | |
Using rack 1.0.0 | |
Using bundler 1.15.0.pre.2 | |
Bundle complete! 1 Gemfile dependency, 2 gems now installed. | |
Use `bundle info [gemname]` to see where a bundled gem is installed. | |
# $? => 0 | |
$ /Users/colby/.rubies/ruby-2.4.0-geminabox/bin/ruby -I/Users/colby/Desktop/Projects/bundler/lib:/Users/colby/Desktop/Projects/bundler/spec -r/Users/colby/Desktop/Projects/bundler/spec/support/artifice/fail.rb -rsupport/hax /Users/colby/Desktop/Projects/bundler/exe/bundle exec -h | |
Usage: | |
bundle exec [OPTIONS] | |
Options: | |
[--keep-file-descriptors], [--no-keep-file-descriptors] | |
[--no-color] # Disable colorization in output | |
-r, [--retry=NUM] # Specify the number of times you wish to attempt network commands | |
-V, [--verbose], [--no-verbose] # Enable verbose output mode | |
Description: | |
Exec runs a command, providing it access to the gems in the bundle. While using bundle exec you can require and call the bundled gems as if they were installed into the system wide Rubygems repository. | |
# $? => 0 | |
# ./spec/commands/exec_spec.rb:329:in `block (5 levels) in <top (required)>' | |
Finished in 2 minutes 0 seconds (files took 0.31259 seconds to load) | |
84 examples, 20 failures, 1 pending | |
Failed examples: | |
rspec './spec/commands/exec_spec.rb[1:20:1:6]' # bundle exec with help flags when e is used shows bundle-exec's man page when --help is between exec and the executable | |
rspec './spec/commands/exec_spec.rb[1:20:1:7]' # bundle exec with help flags when e is used shows bundle-exec's man page when --help is before exec | |
rspec './spec/commands/exec_spec.rb[1:20:1:8]' # bundle exec with help flags when e is used shows bundle-exec's man page when -h is before exec | |
rspec './spec/commands/exec_spec.rb[1:20:1:9]' # bundle exec with help flags when e is used shows bundle-exec's man page when --help is after exec | |
rspec './spec/commands/exec_spec.rb[1:20:1:10]' # bundle exec with help flags when e is used shows bundle-exec's man page when -h is after exec | |
rspec './spec/commands/exec_spec.rb[1:20:2:6]' # bundle exec with help flags when ex is used shows bundle-exec's man page when --help is between exec and the executable | |
rspec './spec/commands/exec_spec.rb[1:20:2:7]' # bundle exec with help flags when ex is used shows bundle-exec's man page when --help is before exec | |
rspec './spec/commands/exec_spec.rb[1:20:2:8]' # bundle exec with help flags when ex is used shows bundle-exec's man page when -h is before exec | |
rspec './spec/commands/exec_spec.rb[1:20:2:9]' # bundle exec with help flags when ex is used shows bundle-exec's man page when --help is after exec | |
rspec './spec/commands/exec_spec.rb[1:20:2:10]' # bundle exec with help flags when ex is used shows bundle-exec's man page when -h is after exec | |
rspec './spec/commands/exec_spec.rb[1:20:3:6]' # bundle exec with help flags when exe is used shows bundle-exec's man page when --help is between exec and the executable | |
rspec './spec/commands/exec_spec.rb[1:20:3:7]' # bundle exec with help flags when exe is used shows bundle-exec's man page when --help is before exec | |
rspec './spec/commands/exec_spec.rb[1:20:3:8]' # bundle exec with help flags when exe is used shows bundle-exec's man page when -h is before exec | |
rspec './spec/commands/exec_spec.rb[1:20:3:9]' # bundle exec with help flags when exe is used shows bundle-exec's man page when --help is after exec | |
rspec './spec/commands/exec_spec.rb[1:20:3:10]' # bundle exec with help flags when exe is used shows bundle-exec's man page when -h is after exec | |
rspec './spec/commands/exec_spec.rb[1:20:4:6]' # bundle exec with help flags when exec is used shows bundle-exec's man page when --help is between exec and the executable | |
rspec './spec/commands/exec_spec.rb[1:20:4:7]' # bundle exec with help flags when exec is used shows bundle-exec's man page when --help is before exec | |
rspec './spec/commands/exec_spec.rb[1:20:4:8]' # bundle exec with help flags when exec is used shows bundle-exec's man page when -h is before exec | |
rspec './spec/commands/exec_spec.rb[1:20:4:9]' # bundle exec with help flags when exec is used shows bundle-exec's man page when --help is after exec | |
rspec './spec/commands/exec_spec.rb[1:20:4:10]' # bundle exec with help flags when exec is used shows bundle-exec's man page when -h is after exec |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment