Created
May 14, 2013 17:13
-
-
Save jpemberthy/5577704 to your computer and use it in GitHub Desktop.
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
| require 'rubygems' rescue nil | |
| require 'wirble' | |
| require 'hirb' | |
| Wirble.init | |
| Wirble.colorize | |
| Hirb::View.enable | |
| railsrc_path = File.expand_path('~/.railsrc') | |
| if ( ENV['RAILS_ENV'] || defined? Rails ) && File.exist?( railsrc_path ) | |
| begin | |
| load railsrc_path | |
| rescue Exception | |
| warn "Could not load: #{ railsrc_path }" # because of $!.message | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment