summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHomu <homu@barosl.com>2016-08-30 05:05:12 +0900
committerHomu <homu@barosl.com>2016-08-30 05:05:12 +0900
commit2b4b82611b1d1408a9e1cefafec9308d52b0a4f4 (patch)
tree1371b07b92a4f4f0b4dc72dea6dbf15433680269
parentc38c0a0bcb0518283520f54ff73e4cca726b9a22 (diff)
parent6667a9d9a1fd7f83b4d262ff00b933f8574a974f (diff)
downloadbundler-2b4b82611b1d1408a9e1cefafec9308d52b0a4f4.tar.gz
Auto merge of #4921 - JuanitoFatas:doc/development-pry-byebug, r=indirect
Doc: Add a note on how to dive into the code with Pry Follow up of https://github.com/bundler/bundler/pull/4919#issuecomment-242706463. [Preview DEVELOPMENT.md](https://github.com/JuanitoFatas/bundler/blob/6667a9d9a1fd7f83b4d262ff00b933f8574a974f/DEVELOPMENT.md#development-setup)
-rw-r--r--DEVELOPMENT.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md
index 8964b75c3d..ab95db363a 100644
--- a/DEVELOPMENT.md
+++ b/DEVELOPMENT.md
@@ -40,6 +40,8 @@ Bundler doesn't use a Gemfile to list development dependencies, because when we
The `BUNDLE_DISABLE_POSTIT` environment variable ensures that the version of Bundler in `/path/to/bundler/lib` will be used. Without that environment setting, Bundler will automatically download, install, and run the version of Bundler listed in `Gemfile.lock`. With that set up, you can test changes you've made to Bundler by running `dbundle`, without interfering with the regular `bundle` command.
+To dive into the code with Pry: `RUBYOPT=-rpry dbundle` to require pry and then run commands.
+
# Submitting Pull Requests
Before you submit a pull request, please remember to do the following: