No commit activity in last 3 years
No release in over 3 years
A collection of developer tools for Pry users
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 0.9.2

Runtime

< 0.11, >= 0.9.8.pre
 Project Readme

OVERVIEW

Project pry-developer_tools
Homepage https://github.com/pry/pry-developer_tools
Documentation http://github.com/pry/pry-developer_tools/
Author Pry Team

DESCRIPTION

pry-developer_tools is a collection of Pry commands that are useful for Pry
developers and Pry plugin developers. It provides commands that you can use
to edit, reload, or define commands while in a Pry session.

EXAMPLES

  • define-command

      # Define a command in-memory (for length of Pry session)
      (pry) > define-command "name", "desc" do
        p "Do something!"
      end
    
  • edit-command

      # Perform a edit of show-method that will persist.
      (pry) > edit-command show-method
    
      # Perform a in-memory edit of show-method.
      (pry) > edit-command -p show-method
    
  • reload-command

      # Reload a Pry command from disk.
      (pry) > reload-command edit-method
    

PRY SUPPORT

Versions >= 0.9.8

INSTALL

gem install pry-developer_tools

LICENSE

Same license as Pry (MIT).