mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
10 lines
222 B
Ruby
10 lines
222 B
Ruby
class Pry::Config
|
|
require_relative 'config/behavior'
|
|
require_relative 'config/default'
|
|
require_relative 'config/convenience'
|
|
include Pry::Config::Behavior
|
|
|
|
def self.shortcuts
|
|
Convenience::SHORTCUTS
|
|
end
|
|
end
|