module ConcernTest::Baz
Public Instance Methods
baz()
click to toggle source
# File activesupport/test/concern_test.rb, line 11 def baz "baz" end
included_ran()
click to toggle source
# File activesupport/test/concern_test.rb, line 19 def included_ran @@included_ran end
included_ran=(value)
click to toggle source
# File activesupport/test/concern_test.rb, line 15 def included_ran=(value) @@included_ran = value end