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:
parent
68f6519c48
commit
e784a1a024
2 changed files with 5 additions and 5 deletions
|
@ -16,8 +16,8 @@ class Pry
|
||||||
class << self
|
class << self
|
||||||
attr_accessor :block
|
attr_accessor :block
|
||||||
attr_accessor :name
|
attr_accessor :name
|
||||||
attr_accessor :description
|
attr_writer :description
|
||||||
attr_accessor :command_options
|
attr_writer :command_options
|
||||||
|
|
||||||
# Define or get the command's description
|
# Define or get the command's description
|
||||||
def description(arg=nil)
|
def description(arg=nil)
|
||||||
|
@ -279,7 +279,7 @@ class Pry
|
||||||
instance_exec(*args, &block)
|
instance_exec(*args, &block)
|
||||||
end
|
end
|
||||||
|
|
||||||
ret = call *args
|
ret = call(*args)
|
||||||
|
|
||||||
self.class.hooks[:after].each do |block|
|
self.class.hooks[:after].each do |block|
|
||||||
ret = instance_exec(*args, &block)
|
ret = instance_exec(*args, &block)
|
||||||
|
@ -319,7 +319,7 @@ class Pry
|
||||||
when arity == 0
|
when arity == 0
|
||||||
[]
|
[]
|
||||||
when arity > 0
|
when arity > 0
|
||||||
args.values_at *(0..(arity - 1)).to_a
|
args.values_at(*(0..(arity - 1)).to_a)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -233,7 +233,7 @@ class Pry
|
||||||
config.collision_warning = false
|
config.collision_warning = false
|
||||||
|
|
||||||
config.gist ||= OpenStruct.new
|
config.gist ||= OpenStruct.new
|
||||||
config.gist.inspecter = proc &:pretty_inspect
|
config.gist.inspecter = proc(&:pretty_inspect)
|
||||||
|
|
||||||
config.plugins ||= OpenStruct.new
|
config.plugins ||= OpenStruct.new
|
||||||
config.plugins.enabled = true
|
config.plugins.enabled = true
|
||||||
|
|
Loading…
Add table
Reference in a new issue