Created
April 26, 2015 18:56
-
-
Save yuki24/cd0ad629e42aff7c8702 to your computer and use it in GitHub Desktop.
rails new with a different number of bundler jobs
This file contains 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
$ bundle config --global jobs 1 | |
You are replacing the current global value of jobs, which is currently "4" | |
$ gem uni coffee-script-source execjs jbuilder columnize spring debug_inspector tilt sdoc jquery-rails sass coffee-script uglifier sass-rails coffee-rails turbolinks sqlite3 byebug binding_of_caller web-console -aIx | |
$ time rails new bundler-jobs-1 | |
create | |
... | |
create vendor/assets/stylesheets/.keep | |
run bundle install | |
Fetching gem metadata from https://rubygems.org/.......... | |
Fetching version metadata from https://rubygems.org/.. | |
Resolving dependencies... | |
Using rake 10.4.2 | |
Using i18n 0.7.0 | |
Using json 1.8.2 | |
Using minitest 5.6.0 | |
Using thread_safe 0.3.5 | |
Using tzinfo 1.2.2 | |
Using activesupport 4.2.1 | |
Using builder 3.2.2 | |
Using erubis 2.7.0 | |
Using mini_portile 0.6.2 | |
Using nokogiri 1.6.6.2 | |
Using rails-deprecated_sanitizer 1.0.3 | |
Using rails-dom-testing 1.0.6 | |
Using loofah 2.0.1 | |
Using rails-html-sanitizer 1.0.2 | |
Using actionview 4.2.1 | |
Using rack 1.6.0 | |
Using rack-test 0.6.3 | |
Using actionpack 4.2.1 | |
Using globalid 0.3.5 | |
Using activejob 4.2.1 | |
Using mime-types 2.5 | |
Using mail 2.6.3 | |
Using actionmailer 4.2.1 | |
Using activemodel 4.2.1 | |
Using arel 6.0.0 | |
Using activerecord 4.2.1 | |
Installing debug_inspector 0.0.2 | |
Installing binding_of_caller 0.7.2 | |
Using bundler 1.9.4 | |
Installing columnize 0.9.0 | |
Installing byebug 4.0.5 | |
Installing coffee-script-source 1.9.1.1 | |
Installing execjs 2.5.2 | |
Installing coffee-script 2.4.1 | |
Using thor 0.19.1 | |
Using railties 4.2.1 | |
Installing coffee-rails 4.1.0 | |
Using multi_json 1.11.0 | |
Installing jbuilder 2.2.13 | |
Installing jquery-rails 4.0.3 | |
Using sprockets 3.0.2 | |
Using sprockets-rails 2.2.4 | |
Using rails 4.2.1 | |
Using rdoc 4.2.0 | |
Installing sass 3.4.13 | |
Installing tilt 1.4.1 | |
Installing sass-rails 5.0.3 | |
Installing sdoc 0.4.1 | |
Installing spring 1.3.4 | |
Installing sqlite3 1.3.10 | |
Installing turbolinks 2.5.3 | |
Installing uglifier 2.7.1 | |
Installing web-console 2.1.2 | |
Bundle complete! 12 Gemfile dependencies, 54 gems now installed. | |
Use `bundle show [gemname]` to see where a bundled gem is installed. | |
run bundle exec spring binstub --all | |
* bin/rake: spring inserted | |
* bin/rails: spring inserted | |
real 0m22.330s | |
user 0m7.123s | |
sys 0m1.288s |
This file contains 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
$ bundle config --global jobs 4 | |
You are replacing the current global value of jobs, which is currently "32" | |
$ gem uni coffee-script-source execjs jbuilder columnize spring debug_inspector tilt sdoc jquery-rails sass coffee-script uglifier sass-rails coffee-rails turbolinks sqlite3 byebug binding_of_caller web-console -aIx | |
$ time rails new bundler-jobs-4 | |
create | |
... | |
create vendor/assets/stylesheets/.keep | |
run bundle install | |
Fetching gem metadata from https://rubygems.org/.......... | |
Fetching version metadata from https://rubygems.org/.. | |
Resolving dependencies... | |
Using rake 10.4.2 | |
Using i18n 0.7.0 | |
Using minitest 5.6.0 | |
Using thread_safe 0.3.5 | |
Using builder 3.2.2 | |
Using erubis 2.7.0 | |
Using mini_portile 0.6.2 | |
Using rack 1.6.0 | |
Using mime-types 2.5 | |
Using arel 6.0.0 | |
Using bundler 1.9.4 | |
Installing columnize 0.9.0 | |
Installing debug_inspector 0.0.2 | |
Installing coffee-script-source 1.9.1.1 | |
Using thor 0.19.1 | |
Installing execjs 2.5.2 | |
Using rdoc 4.2.0 | |
Installing multi_json 1.11.0 | |
Installing sass 3.4.13 | |
Installing json 1.8.2 | |
Installing tilt 1.4.1 | |
Using tzinfo 1.2.2 | |
Using nokogiri 1.6.6.2 | |
Using rack-test 0.6.3 | |
Using sprockets 3.0.2 | |
Using mail 2.6.3 | |
Installing spring 1.3.4 | |
Installing sqlite3 1.3.10 | |
Installing coffee-script 2.4.1 | |
Installing byebug 4.0.5 | |
Installing binding_of_caller 0.7.2 | |
Using activesupport 4.2.1 | |
Using loofah 2.0.1 | |
Using rails-deprecated_sanitizer 1.0.3 | |
Using globalid 0.3.5 | |
Using activemodel 4.2.1 | |
Installing sdoc 0.4.1 | |
Using rails-html-sanitizer 1.0.2 | |
Using rails-dom-testing 1.0.6 | |
Using activejob 4.2.1 | |
Using activerecord 4.2.1 | |
Using actionview 4.2.1 | |
Using actionpack 4.2.1 | |
Using actionmailer 4.2.1 | |
Using railties 4.2.1 | |
Using sprockets-rails 2.2.4 | |
Installing coffee-rails 4.1.0 | |
Installing jbuilder 2.2.13 | |
Using rails 4.2.1 | |
Installing uglifier 2.7.1 | |
Installing sass-rails 5.0.3 | |
Installing jquery-rails 4.0.3 | |
Installing turbolinks 2.5.3 | |
Installing web-console 2.1.2 | |
Bundle complete! 12 Gemfile dependencies, 54 gems now installed. | |
Use `bundle show [gemname]` to see where a bundled gem is installed. | |
run bundle exec spring binstub --all | |
* bin/rake: spring inserted | |
* bin/rails: spring inserted | |
real 0m14.488s | |
user 0m8.765s | |
sys 0m1.871s |
This file contains 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
$ bundle config --global jobs 8 | |
You are replacing the current global value of jobs, which is currently "16" | |
$ gem uni coffee-script-source execjs jbuilder columnize spring debug_inspector tilt sdoc jquery-rails sass coffee-script uglifier sass-rails coffee-rails turbolinks sqlite3 byebug binding_of_caller web-console -aIx | |
$ time rails new bundler-jobs-8 | |
create | |
... | |
create vendor/assets/stylesheets/.keep | |
run bundle install | |
Fetching gem metadata from https://rubygems.org/.......... | |
Fetching version metadata from https://rubygems.org/.. | |
Resolving dependencies... | |
Using rake 10.4.2 | |
Using i18n 0.7.0 | |
Using json 1.8.2 | |
Using minitest 5.6.0 | |
Using thread_safe 0.3.5 | |
Using builder 3.2.2 | |
Using erubis 2.7.0 | |
Using mini_portile 0.6.2 | |
Using rack 1.6.0 | |
Using mime-types 2.5 | |
Using arel 6.0.0 | |
Using bundler 1.9.4 | |
Using thor 0.19.1 | |
Using multi_json 1.11.0 | |
Using rdoc 4.2.0 | |
Installing execjs 2.5.2 | |
Installing columnize 0.9.0 | |
Using nokogiri 1.6.6.2 | |
Using rack-test 0.6.3 | |
Using sprockets 3.0.2 | |
Using mail 2.6.3 | |
Using tzinfo 1.2.2 | |
Installing tilt 1.4.1 | |
Installing spring 1.3.4 | |
Installing coffee-script-source 1.9.1.1 | |
Using loofah 2.0.1 | |
Using activesupport 4.2.1 | |
Installing debug_inspector 0.0.2 | |
Using rails-html-sanitizer 1.0.2 | |
Using rails-deprecated_sanitizer 1.0.3 | |
Using globalid 0.3.5 | |
Using activemodel 4.2.1 | |
Installing sass 3.4.13 | |
Installing sdoc 0.4.1 | |
Using rails-dom-testing 1.0.6 | |
Using activejob 4.2.1 | |
Using activerecord 4.2.1 | |
Using actionview 4.2.1 | |
Using actionpack 4.2.1 | |
Using actionmailer 4.2.1 | |
Using railties 4.2.1 | |
Using sprockets-rails 2.2.4 | |
Installing coffee-script 2.4.1 | |
Using rails 4.2.1 | |
Installing uglifier 2.7.1 | |
Installing jbuilder 2.2.13 | |
Installing sass-rails 5.0.3 | |
Installing jquery-rails 4.0.3 | |
Installing coffee-rails 4.1.0 | |
Installing byebug 4.0.5 | |
Installing turbolinks 2.5.3 | |
Installing sqlite3 1.3.10 | |
Installing binding_of_caller 0.7.2 | |
Installing web-console 2.1.2 | |
Bundle complete! 12 Gemfile dependencies, 54 gems now installed. | |
Use `bundle show [gemname]` to see where a bundled gem is installed. | |
run bundle exec spring binstub --all | |
* bin/rake: spring inserted | |
* bin/rails: spring inserted | |
real 0m11.685s | |
user 0m7.160s | |
sys 0m1.393s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment