Skip to content

Instantly share code, notes, and snippets.

@jacqueline-homan
Created August 1, 2013 18:34
Show Gist options
  • Save jacqueline-homan/6133975 to your computer and use it in GitHub Desktop.
Save jacqueline-homan/6133975 to your computer and use it in GitHub Desktop.
rvm install stacktrace
jacqueline@jacqueline-Satellite-S55-A:~$ rvm install 1.9.3-p392
Already installed ruby-1.9.3-p392.
To reinstall use:
rvm reinstall 1.9.3-p392
jacqueline@jacqueline-Satellite-S55-A:~$ cd hackety-hack.com
RVM used your Gemfile for selecting Ruby, it is all fine - Heroku does that too,
you can ignore these warnings with 'rvm rvmrc warning ignore /home/jacqueline/hackety-hack.com/Gemfile'.
To ignore the warning for all files run 'rvm rvmrc warning ignore allGemfiles'.
jacqueline@jacqueline-Satellite-S55-A:~/hackety-hack.com$ cat .bundle/config
---
BUNDLE_PATH: .bundle
BUNDLE_BIN: bin
BUNDLE_DISABLE_SHARED_GEMS: '1'
jacqueline@jacqueline-Satellite-S55-A:~/hackety-hack.com$ rm -rf .bundle
jacqueline@jacqueline-Satellite-S55-A:~/hackety-hack.com$ echo $GEM_HOME
/home/jacqueline/.rvm/gems/ruby-1.9.3-p392@hackety-hack.com
jacqueline@jacqueline-Satellite-S55-A:~/hackety-hack.com$ echo $PATH
/home/jacqueline/.rvm/gems/ruby-1.9.3-p392@hackety-hack.com/bin:/home/jacqueline/.rvm/gems/ruby-1.9.3-p392@global/bin:/home/jacqueline/.rvm/rubies/ruby-1.9.3-p392/bin:/home/jacqueline/.rvm/bin:/usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games
jacqueline@jacqueline-Satellite-S55-A:~/hackety-hack.com$ bundle install
Using rake (10.1.0)
Using multi_json (1.7.7)
Using activesupport (3.1.11)
Using builder (3.0.4)
Using i18n (0.6.4)
Using activemodel (3.1.11)
Using erubis (2.7.0)
Using rack (1.3.10)
Using rack-cache (1.2)
Using rack-mount (0.8.3)
Using rack-test (0.6.2)
Using hike (1.2.3)
Using tilt (1.3.7)
Using sprockets (2.0.4)
Using actionpack (3.1.11)
Using mime-types (1.23)
Using polyglot (0.3.3)
Using treetop (1.4.14)
Using mail (2.3.3)
Using actionmailer (3.1.11)
Using arel (2.2.3)
Using tzinfo (0.3.37)
Using activerecord (3.1.11)
Using activeresource (3.1.11)
Using addressable (2.3.5)
Using attr_required (0.0.5)
Using bcrypt-ruby (3.1.1)
Using bson (1.9.1)
Using bson_ext (1.9.1)
Using cancan (1.6.10)
Using mini_portile (0.5.1)
Using nokogiri (1.6.0)
Using xpath (2.0.0)
Using capybara (2.1.0)
Using coderay (1.0.9)
Using coffee-script-source (1.6.3)
Using execjs (1.4.0)
Using coffee-script (2.2.0)
Using rack-ssl (1.3.3)
Using json (1.8.0)
Using rdoc (3.12.2)
Using thor (0.14.6)
Using railties (3.1.11)
Using coffee-rails (3.1.1)
Using diff-lcs (1.2.4)
Using gherkin (2.12.0)
Using multi_test (0.0.2)
Using cucumber (1.3.5)
Using bundler (1.3.5)
Using rails (3.1.11)
Using cucumber-rails (1.3.1)
Using database_cleaner (1.0.1)
Using orm_adapter (0.4.0)
Using warden (1.2.3)
Using devise (2.2.4)
Using fabrication (2.7.2)
Using faker (1.1.2)
Using multipart-post (1.2.0)
Using faraday (0.8.7)
Using httpclient (2.3.3)
Using rack-oauth2 (1.0.5)
Using fb_graph (2.7.7)
Using redcarpet (3.0.0)
Using metadown (1.0.1)
Using hackety_hack-lessons (1.1.2)
Using haml (4.0.3)
Using haml-rails (0.4)
Using has_scope (0.5.1)
Using hashie (2.0.5)
Using httpauth (0.2.0)
Using responders (0.9.3)
Using inherited_resources (1.4.0)
Using jquery-rails (3.0.4)
Using jwt (0.1.8)
Using kgio (2.8.0)
Using koala (1.6.0)
Using launchy (2.3.0)
Using metaclass (0.0.1)
Using method_source (0.8.1)
Using mongo (1.9.1)
Using plucky (0.5.2)
Using mongo_mapper (0.12.0)
Using mm-devise (2.0)
Using mocha (0.14.0)
Using oauth (0.4.7)
Using oauth2 (0.8.1)
Using omniauth (1.1.4)
Using omniauth-oauth2 (1.1.1)
Using omniauth-facebook (1.4.1)
Using omniauth-github (1.1.1)
Using omniauth-oauth (1.0.1)
Using omniauth-linkedin (0.1.0)
Using omniauth-twitter (1.0.0)
Using pg (0.15.1)
Using slop (3.4.5)
Using pry (0.9.12.2)
Using raindrops (0.11.0)
Using rdiscount (2.1.6)
Using rspec-core (2.14.3)
Using rspec-expectations (2.14.0)
Using rspec-mocks (2.14.1)
Using rspec-rails (2.14.0)
Using sass (3.2.9)
Using sass-rails (3.1.7)
Using semantic_menu (0.1.0) from git://github.com/michaek/semantic_menu.git (at master)
Using simple_form (1.5.0.dev) from https://github.com/bitzesty/bootstrap_form.git (at master)
Using simple_oauth (0.2.0)
Using simplecov-html (0.7.1)
Using simplecov (0.7.1)
Using sqlite3 (1.3.7)
Using twitter (4.8.1)
Using uglifier (2.1.2)
Using unicorn (4.6.3)
Using will_paginate (3.0.4)
Your bundle is complete!
Use `bundle show [gemname]` to see where a bundled gem is installed.
jacqueline@jacqueline-Satellite-S55-A:~/hackety-hack.com$ rspec
*** Mocha deprecation warning: Change `require 'mocha'` to `require 'mocha/setup'`.
*** Mocha deprecation warning: Test::Unit or MiniTest must be loaded *before* Mocha.
*** Mocha deprecation warning: If you're integrating with a test library other than Test::Unit or MiniTest, you should use `require 'mocha/api'` instead of `require 'mocha'`.
/home/jacqueline/.rvm/gems/ruby-1.9.3-p392@hackety-hack.com/gems/devise-2.2.4/lib/devise/omniauth/config.rb:40:in `autoload_strategy': Could not find a strategy with name `Yahoo'. Please ensure it is required or explicitly set it using the :strategy_class option. (Devise::OmniAuth::StrategyNotFound)
from /home/jacqueline/.rvm/gems/ruby-1.9.3-p392@hackety-hack.com/gems/devise-2.2.4/lib/devise/omniauth/config.rb:25:in `strategy_class'
from /home/jacqueline/.rvm/gems/ruby-1.9.3-p392@hackety-hack.com/gems/devise-2.2.4/lib/devise/rails.rb:22:in `block (2 levels) in <class:Engine>'
from /home/jacqueline/.rvm/gems/ruby-1.9.3-p392@hackety-hack.com/gems/devise-2.2.4/lib/devise/rails.rb:21:in `each'
from /home/jacqueline/.rvm/gems/ruby-1.9.3-p392@hackety-hack.com/gems/devise-2.2.4/lib/devise/rails.rb:21:in `block in <class:Engine>'
from /home/jacqueline/.rvm/gems/ruby-1.9.3-p392@hackety-hack.com/gems/railties-3.1.11/lib/rails/initializable.rb:30:in `instance_exec'
from /home/jacqueline/.rvm/gems/ruby-1.9.3-p392@hackety-hack.com/gems/railties-3.1.11/lib/rails/initializable.rb:30:in `run'
from /home/jacqueline/.rvm/gems/ruby-1.9.3-p392@hackety-hack.com/gems/railties-3.1.11/lib/rails/initializable.rb:55:in `block in run_initializers'
from /home/jacqueline/.rvm/gems/ruby-1.9.3-p392@hackety-hack.com/gems/railties-3.1.11/lib/rails/initializable.rb:54:in `each'
from /home/jacqueline/.rvm/gems/ruby-1.9.3-p392@hackety-hack.com/gems/railties-3.1.11/lib/rails/initializable.rb:54:in `run_initializers'
from /home/jacqueline/.rvm/gems/ruby-1.9.3-p392@hackety-hack.com/gems/railties-3.1.11/lib/rails/application.rb:96:in `initialize!'
from /home/jacqueline/.rvm/gems/ruby-1.9.3-p392@hackety-hack.com/gems/railties-3.1.11/lib/rails/railtie/configurable.rb:30:in `method_missing'
from /home/jacqueline/hackety-hack.com/config/environment.rb:5:in `<top (required)>'
from /home/jacqueline/hackety-hack.com/spec/spec_helper.rb:22:in `require'
from /home/jacqueline/hackety-hack.com/spec/spec_helper.rb:22:in `<top (required)>'
from /home/jacqueline/hackety-hack.com/spec/controllers/authentication_controller_spec.rb:1:in `require'
from /home/jacqueline/hackety-hack.com/spec/controllers/authentication_controller_spec.rb:1:in `<top (required)>'
from /home/jacqueline/.rvm/gems/ruby-1.9.3-p392@hackety-hack.com/gems/rspec-core-2.14.3/lib/rspec/core/configuration.rb:896:in `load'
from /home/jacqueline/.rvm/gems/ruby-1.9.3-p392@hackety-hack.com/gems/rspec-core-2.14.3/lib/rspec/core/configuration.rb:896:in `block in load_spec_files'
from /home/jacqueline/.rvm/gems/ruby-1.9.3-p392@hackety-hack.com/gems/rspec-core-2.14.3/lib/rspec/core/configuration.rb:896:in `each'
from /home/jacqueline/.rvm/gems/ruby-1.9.3-p392@hackety-hack.com/gems/rspec-core-2.14.3/lib/rspec/core/configuration.rb:896:in `load_spec_files'
from /home/jacqueline/.rvm/gems/ruby-1.9.3-p392@hackety-hack.com/gems/rspec-core-2.14.3/lib/rspec/core/command_line.rb:22:in `run'
from /home/jacqueline/.rvm/gems/ruby-1.9.3-p392@hackety-hack.com/gems/rspec-core-2.14.3/lib/rspec/core/runner.rb:80:in `run'
from /home/jacqueline/.rvm/gems/ruby-1.9.3-p392@hackety-hack.com/gems/rspec-core-2.14.3/lib/rspec/core/runner.rb:17:in `block in autorun'
Coverage report generated for RSpec to /home/jacqueline/hackety-hack.com/public/coverage. 0 / 0 LOC (0.0%) covered.
jacqueline@jacqueline-Satellite-S55-A:~/hackety-hack.com$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment