Namespace
Methods
A
B
C
D
E
F
M
N
O
P
R
Constants
A = ActiveSupport::Deprecation::DeprecatedConstantProxy.new('Deprecatee::A', 'Deprecatee::B::C')
 
Class Public methods
new()
# File activesupport/test/deprecation_test.rb, line 4
def initialize
  @request = ActiveSupport::Deprecation::DeprecatedInstanceVariableProxy.new(self, :request)
  @_request = 'there we go'
end
Instance Public methods
a()
# File activesupport/test/deprecation_test.rb, line 21
def a; end
b()
# File activesupport/test/deprecation_test.rb, line 22
def b; end
c()
# File activesupport/test/deprecation_test.rb, line 23
def c; end
d()
# File activesupport/test/deprecation_test.rb, line 24
def d; end
e()
# File activesupport/test/deprecation_test.rb, line 25
def e; end
f=(v)
# File activesupport/test/deprecation_test.rb, line 28
def f=(v); end
multi(a,b,c)
# File activesupport/test/deprecation_test.rb, line 18
def multi(a,b,c) [a,b,c] end
none()
# File activesupport/test/deprecation_test.rb, line 16
def none() 1 end
not()
# File activesupport/test/deprecation_test.rb, line 15
def not() 2 end
old_request()
# File activesupport/test/deprecation_test.rb, line 9
def old_request; @request end
one(a)
# File activesupport/test/deprecation_test.rb, line 17
def one(a) a end
partially(foo = nil)
# File activesupport/test/deprecation_test.rb, line 11
def partially(foo = nil)
  ActiveSupport::Deprecation.warn('calling with foo=nil is out') if foo.nil?
end
request()
# File activesupport/test/deprecation_test.rb, line 8
def request; @_request end