Class: Foo
- Inherits:
-
Object
show all
- Extended by:
- CrossCase
- Defined in:
- lib/carat/crosscase.rb,
lib/carat-dev/import-module/import-module-0.81/test/test-time.rb,
lib/carat-dev/import-module/import-module-0.81/lib/import-module.rb,
lib/carat-dev/import-module/import-module-0.81/test/test-import_scope.rb,
lib/carat-dev/import-module/import-module-0.81/test/test-scope_import.rb,
lib/carat-dev/interface_work/SCRAP/j-interface/interface-0.1.0/test/test_instance.rb
Overview
Constant Summary
Constants included
from CrossCase
CrossCase::Rcsid, CrossCase::Version
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
261
262
263
|
# File 'lib/carat/crosscase.rb', line 261
def self::class_pre_underbarred_method
"class_pre_underbarred_method"
end
|
.class_underbarred_method ⇒ Object
279
280
281
|
# File 'lib/carat/crosscase.rb', line 279
def self::class_underbarred_method
"class_underbarred_method"
end
|
.classCamelMethod ⇒ Object
275
276
277
|
# File 'lib/carat/crosscase.rb', line 275
def self::classCamelMethod
"classCamelMethod"
end
|
.classPreCamelMethod ⇒ Object
257
258
259
|
# File 'lib/carat/crosscase.rb', line 257
def self::classPreCamelMethod
"classPreCamelMethod"
end
|
.method_added(id) ⇒ Object
253
254
255
|
# File 'lib/carat/crosscase.rb', line 253
def self::method_added( id )
$stderr.puts "Original ma: Added #{id} to #{self.inspect}"
end
|
.singleton_method_added(id) ⇒ Object
249
250
251
|
# File 'lib/carat/crosscase.rb', line 249
def self::singleton_method_added( id )
$stderr.puts "Original sma: Added #{id} to #{self.inspect}"
end
|
Instance Method Details
11
|
# File 'lib/carat-dev/interface_work/SCRAP/j-interface/interface-0.1.0/test/test_instance.rb', line 11
def bar; end
|
#camelCasedMethod ⇒ Object
283
284
285
|
# File 'lib/carat/crosscase.rb', line 283
def camelCasedMethod
"camelCasedMethod"
end
|
81
82
83
|
# File 'lib/carat-dev/import-module/import-module-0.81/test/test-time.rb', line 81
def foo
0
end
|
461
462
463
|
# File 'lib/carat-dev/import-module/import-module-0.81/lib/import-module.rb', line 461
def hello
puts 'hello'
end
|
#pre_underbarred_method ⇒ Object
269
270
271
|
# File 'lib/carat/crosscase.rb', line 269
def pre_underbarred_method
"pre_underbarred_method"
end
|
#preCamelCasedMethod ⇒ Object
265
266
267
|
# File 'lib/carat/crosscase.rb', line 265
def preCamelCasedMethod
"preCamelCasedMethod"
end
|
#underbarred_method ⇒ Object
287
288
289
|
# File 'lib/carat/crosscase.rb', line 287
def underbarred_method
"underbarred_method"
end
|