方法
- #
- B
- D
- E
- N
- S
类公共方法
new() 链接
源代码: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/deprecation/deprecators.rb, line 10 def initialize @options = {} @deprecators = {} end
实例公共方法
[](name) 链接
返回通过 []=
添加到此集合的弃用器。
源代码: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/deprecation/deprecators.rb, line 16 def [](name) @deprecators[name] end
[]=(name, deprecator) 链接
将给定的 deprecator
添加到此集合。 弃用器将立即使用之前在此集合上设置的任何选项进行配置。
deprecators = ActiveSupport::Deprecation::Deprecators.new
deprecators.debug = true
foo_deprecator = ActiveSupport::Deprecation.new("2.0", "Foo")
foo_deprecator.debug # => false
deprecators[:foo] = foo_deprecator
deprecators[:foo].debug # => true
foo_deprecator.debug # => true
源代码: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/deprecation/deprecators.rb, line 34 def []=(name, deprecator) apply_options(deprecator) @deprecators[name] = deprecator end
behavior=(behavior) 链接
设置此集合中所有弃用器的弃用警告行为。
源代码: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/deprecation/deprecators.rb, line 60 def behavior=(behavior) set_option(:behavior, behavior) end
debug=(debug) 链接
设置此集合中所有弃用器的调试标志。
源代码: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/deprecation/deprecators.rb, line 52 def debug=(debug) set_option(:debug, debug) end
disallowed_behavior=(disallowed_behavior) 链接
设置此集合中所有弃用器的禁止的弃用警告行为。
源代码: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/deprecation/deprecators.rb, line 68 def disallowed_behavior=(disallowed_behavior) set_option(:disallowed_behavior, disallowed_behavior) end
disallowed_warnings=(disallowed_warnings) 链接
设置此集合中所有弃用器的禁止的弃用警告。
源代码: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/deprecation/deprecators.rb, line 76 def disallowed_warnings=(disallowed_warnings) set_option(:disallowed_warnings, disallowed_warnings) end
each(&block) 链接
迭代此集合中的所有弃用器。 如果没有给出块,则返回一个 Enumerator
。
源代码: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/deprecation/deprecators.rb, line 41 def each(&block) return to_enum(__method__) unless block @deprecators.each_value(&block) end
silence(&block) 链接
在给定块的持续时间内使此集合中的所有弃用器静音。
源代码: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/deprecation/deprecators.rb, line 84 def silence(&block) each { |deprecator| deprecator.begin_silence } block.call ensure each { |deprecator| deprecator.end_silence } end
silenced=(silenced) 链接
设置此集合中所有弃用器的静音标志。
源代码: 显示 | 在 GitHub 上
# File activesupport/lib/active_support/deprecation/deprecators.rb, line 47 def silenced=(silenced) set_option(:silenced, silenced) end