Created
April 30, 2011 07:53
-
-
Save Mon-Ouie/949524 to your computer and use it in GitHub Desktop.
This file contains 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
module Helpers | |
def use_a_helper | |
puts "test" | |
end | |
end | |
class Pry::CommandContext | |
include Helpers | |
end | |
Pry.commands = Pry::CommandSet.new :test, Pry::Commands do | |
command "foo" do | |
use_a_helper | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment