0.0
No commit activity in last 3 years
No release in over 3 years
Get caller class name that is calling from the body of a class definition.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.7
~> 10.0
>= 0
 Project Readme

CallerClass

Build Status Gem Version

CallerClass provides the way that to get caller class name that is calling from the body of a class definition.

Installation

Add this line to your application's Gemfile:

gem 'caller_class'

And then execute:

$ bundle

Or install it yourself as:

$ gem install caller_class

Usage

Extend CallerClass module and call caller_class. This method returns a class name calling the method.

Example

Call from the body of a class definition:

class Foo
  extend CallerClass

  p caller_class #=> "Foo"
end

Call from the body of a nested class definition:

class Foo
  class Bar
    extend CallerClass

    caller_class #=> "Bar"
  end
end

Call from extended class:

module Foo
  include CallerClass

  def foo
    p caller_class #=> "Bar"
  end
end

class Bar
  extend Foo

  foo
end

Contributing

  1. Fork it ( https://github.com/kami30k/caller_class/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request