Joined April 2015
·
Posted to
Use pry with Bundler without having it on your Gemfile
over 1 year
ago
That looks pretty cool! Unfortunately, I can't seem to require my application properly though. Are we supposed to replace require 'app' with a require that refers to the name of our app? If so, what's the best place to look for the name of a Rails app and would you mind giving a concrete example?
Thanks Adan! That set me in the right direction. It turns out that for a Rails app, I needed to run
require File.expand_path('config/environment')
from the root of my project.