Class: Foo

Inherits:
Object show all
Extended by:
CrossCase
Defined in:
lib/mega/crosscase.rb

Overview

:nodoc:

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_methodObject



257
258
259
# File 'lib/mega/crosscase.rb', line 257

def self::class_pre_underbarred_method
  "class_pre_underbarred_method"
end

.class_underbarred_methodObject



275
276
277
# File 'lib/mega/crosscase.rb', line 275

def self::class_underbarred_method
  "class_underbarred_method"
end

.classCamelMethodObject



271
272
273
# File 'lib/mega/crosscase.rb', line 271

def self::classCamelMethod
  "classCamelMethod"
end

.classPreCamelMethodObject



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

#camelCasedMethodObject



279
280
281
# File 'lib/mega/crosscase.rb', line 279

def camelCasedMethod
  "camelCasedMethod"
end

#pre_underbarred_methodObject



265
266
267
# File 'lib/mega/crosscase.rb', line 265

def pre_underbarred_method
  "pre_underbarred_method"
end

#preCamelCasedMethodObject



261
262
263
# File 'lib/mega/crosscase.rb', line 261

def preCamelCasedMethod
  "preCamelCasedMethod"
end

#underbarred_methodObject



283
284
285
# File 'lib/mega/crosscase.rb', line 283

def underbarred_method
  "underbarred_method"
end