1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

Make pry silent with RUBYOPT=-w

This commit is contained in:
Conrad Irwin 2012-01-15 12:21:28 -08:00
parent 68f6519c48
commit e784a1a024
2 changed files with 5 additions and 5 deletions

View file

@ -16,8 +16,8 @@ class Pry
class << self
attr_accessor :block
attr_accessor :name
attr_accessor :description
attr_accessor :command_options
attr_writer :description
attr_writer :command_options
# Define or get the command's description
def description(arg=nil)
@ -279,7 +279,7 @@ class Pry
instance_exec(*args, &block)
end
ret = call *args
ret = call(*args)
self.class.hooks[:after].each do |block|
ret = instance_exec(*args, &block)
@ -319,7 +319,7 @@ class Pry
when arity == 0
[]
when arity > 0
args.values_at *(0..(arity - 1)).to_a
args.values_at(*(0..(arity - 1)).to_a)
end
end

View file

@ -233,7 +233,7 @@ class Pry
config.collision_warning = false
config.gist ||= OpenStruct.new
config.gist.inspecter = proc &:pretty_inspect
config.gist.inspecter = proc(&:pretty_inspect)
config.plugins ||= OpenStruct.new
config.plugins.enabled = true