Class: Foo
Overview
Class Method Summary
collapse
Instance Method Summary
collapse
Methods included from CrossCase
extend_object, findTargetMethods, included, installAlias, installClassAlias, installMethodHooks, transform, transformClassMethods, transformInstanceMethods
Class Method Details
.class_pre_underbarred_method ⇒ Object
257
258
259
|
# File 'lib/mega/crosscase.rb', line 257
def self::class_pre_underbarred_method
"class_pre_underbarred_method"
end
|
.class_underbarred_method ⇒ Object
275
276
277
|
# File 'lib/mega/crosscase.rb', line 275
def self::class_underbarred_method
"class_underbarred_method"
end
|
.classCamelMethod ⇒ Object
271
272
273
|
# File 'lib/mega/crosscase.rb', line 271
def self::classCamelMethod
"classCamelMethod"
end
|
.classPreCamelMethod ⇒ Object
253
254
255
|
# File 'lib/mega/crosscase.rb', line 253
def self::classPreCamelMethod
"classPreCamelMethod"
end
|
.method_added(id) ⇒ Object
249
250
251
|
# File 'lib/mega/crosscase.rb', line 249
def self::method_added( id )
$stderr.puts "Original ma: Added #{id} to #{self.inspect}"
end
|
.singleton_method_added(id) ⇒ Object
245
246
247
|
# File 'lib/mega/crosscase.rb', line 245
def self::singleton_method_added( id )
$stderr.puts "Original sma: Added #{id} to #{self.inspect}"
end
|
Instance Method Details
#camelCasedMethod ⇒ Object
279
280
281
|
# File 'lib/mega/crosscase.rb', line 279
def camelCasedMethod
"camelCasedMethod"
end
|
#pre_underbarred_method ⇒ Object
265
266
267
|
# File 'lib/mega/crosscase.rb', line 265
def pre_underbarred_method
"pre_underbarred_method"
end
|
#preCamelCasedMethod ⇒ Object
261
262
263
|
# File 'lib/mega/crosscase.rb', line 261
def preCamelCasedMethod
"preCamelCasedMethod"
end
|
#underbarred_method ⇒ Object
283
284
285
|
# File 'lib/mega/crosscase.rb', line 283
def underbarred_method
"underbarred_method"
end
|