Project

defined

0.01
No commit activity in last 3 years
No release in over 3 years
Calls Module#defined whenever a class or module is defined or redefined
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

defined¶ ↑

Calls Module#defined after a class or module has been defined or redefined

Note: relies on {Kernel#set_trace_func}[http://www.ruby-doc.org/core/classes/Kernel.html#M001430]

Installation¶ ↑

gem install defined

Usage¶ ↑

Defined.enable!

class User
  def self.defined(file, line, method)
    puts "  defined by #{file}:#{line} with #{method}"
  end

  puts 'in original class definition'
end

User.class_eval do
  puts 'in class_eval'
end

class User
  puts 'in class definition again'
end

Class.new(User) do
  puts 'in Class.new'
end

Outputs¶ ↑

in original class definition
  defined by /tmp/untitled.rb:1 with class
in class_eval
  defined by /tmp/untitled.rb:9 with class_eval
in class definition again
  defined by /tmp/untitled.rb:13 with class
in Class.new
  defined by /tmp/untitled.rb:17 with initialize

Note the method in the last example is initialize NOT new¶ ↑

Patches and pull requests¶ ↑

  • Fork the project.

  • Make your feature addition or bug fix.

  • Add tests for it. This is important so I don’t break it in a future version unintentionally.

  • Commit, do not mess with Rakefile, version, or history. (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)

  • Send me a pull request. Bonus points for topic branches.