mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
14 lines
227 B
Ruby
14 lines
227 B
Ruby
|
module ModuleSpecs
|
||
|
class ClassWithFoo
|
||
|
def foo; "foo" end
|
||
|
end
|
||
|
|
||
|
module PrependedModule
|
||
|
def foo; "foo from prepended module"; end
|
||
|
end
|
||
|
|
||
|
module IncludedModule
|
||
|
def foo; "foo from included module"; end
|
||
|
end
|
||
|
end
|