Advertisement
Guest User

Untitled

a guest
Aug 28th, 2015
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.57 KB | None | 0 0
  1. ~/myapp $ rvm ruby-2.2.0 do rvm gemset create stackoverflow
  2. ruby-2.2.0 - #gemset created /Users/io/.rvm/gems/ruby-2.2.0@stackoverflow
  3. ruby-2.2.0 - #generating stackoverflow wrappers........
  4. ~/myapp $ rvm use 2.2@stackoverflow
  5. Using /Users/io/.rvm/gems/ruby-2.2.0 with gemset stackoverflow
  6. ~/myapp $ bundle install
  7. # trimmed
  8. ~/myapp $ RAILS_ENV=ci rake
  9. /Users/io/.rvm/rubies/ruby-2.2.0/bin/ruby -I/Users/io/.rvm/gems/ruby-2.2.0@stackoverflow/gems/rspec-core-3.3.2/lib:/Users/io/.rvm/gems/ruby-2.2.0@stackoverflow/gems/rspec-support-3.3.0/lib /Users/io/.rvm/gems/ruby-2.2.0@stackoverflow/gems/rspec-core-3.3.2/exe/rspec --pattern spec/\*\*\{,/\*/\*\*\}/\*_spec.rb
  10. ...............................................................................................
  11.  
  12. Finished in 14.42 seconds (files took 3.06 seconds to load)
  13. 95 examples, 0 failures
  14.  
  15.  ~/myapp $ RAILS_ENV=ci rake spec
  16.  # No output, just a brief pause and back to shell prompt
  17.  ~/myapp $ RAILS_ENV=ci rspec    
  18. ...............................................................................................
  19.  
  20. Finished in 26.47 seconds (files took 2.95 seconds to load)
  21. 95 examples, 0 failures
  22. ~/myapp $ RAILS_ENV=ci bundle exec rake
  23. # No output, just a brief pause and back to shell prompt
  24. ~/myapp $ RAILS_ENV=ci bundle exec rake spec
  25. # No output, just a brief pause and back to shell prompt
  26. ~/myapp $ RAILS_ENV=ci bundle exec rspec    
  27. ...............................................................................................
  28.  
  29. Finished in 24.65 seconds (files took 3.13 seconds to load)
  30. 95 examples, 0 failures
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement