Skip to content

Commit

Permalink
Change the name of the environment variable to be more descriptive
Browse files Browse the repository at this point in the history
  • Loading branch information
Calvin Wong Loi Sing committed May 19, 2017
1 parent 63a7388 commit 5cfe7aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/pry-remote.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
require 'open3'

module PryRemote
DefaultHost = ENV['PRY_REMOTE_HOST'] || "127.0.0.1"
DefaultPort = ENV['PRY_REMOTE_PORT'] || 9876
DefaultHost = ENV['PRY_REMOTE_DEFAULT_HOST'] || "127.0.0.1"
DefaultPort = ENV['PRY_REMOTE_DEFAULT_PORT'] || 9876

# A class to represent an input object created from DRb. This is used because
# Pry checks for arity to know if a prompt should be passed to the object.
Expand Down

0 comments on commit 5cfe7aa

Please sign in to comment.