Sha256: 3abd1f6f92746300bad3473f2396bb2eb38e5b82a50326f9bdeeee16b24e0ed5

Contents?: true

Size: 1.28 KB

Versions: 77

Compression:

Stored size: 1.28 KB

Contents

# Extensions to nil which allow for more helpful error messages for 
# people who are new to rails.
#
# The aim is to ensure that when users pass nil to methods where that isn't
# appropriate, instead of NoMethodError and the name of some method used
# by the framework users will see a message explaining what type of object 
# was expected.

class NilClass
  WHINERS = [ ::ActiveRecord::Base, ::Array ]
  
  @@method_class_map = Hash.new
  
  WHINERS.each do |klass|
    methods = klass.public_instance_methods - public_instance_methods
    methods.each do |method|
      @@method_class_map[method.to_sym] = klass
    end
  end
  
  def id
    raise RuntimeError, "Called id for nil, which would mistakenly be 4 -- if you really wanted the id of nil, use object_id", caller
  end

  private
    def method_missing(method, *args, &block)
      raise_nil_warning_for @@method_class_map[method], method, caller
    end

    def raise_nil_warning_for(klass = nil, selector = nil, with_caller = nil)
      message = "You have a nil object when you didn't expect it!"
      message << "\nYou might have expected an instance of #{klass}." if klass
      message << "\nThe error occurred while evaluating nil.#{selector}" if selector
      
      raise NoMethodError, message, with_caller || caller
    end
end

Version data entries

77 entries across 77 versions & 6 rubygems

Version Path
jstorimer-deep-test-2.0.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/whiny_nil.rb
jstorimer-deep-test-1.4.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/whiny_nil.rb
jstorimer-deep-test-1.3.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/whiny_nil.rb
jstorimer-deep-test-1.2.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/whiny_nil.rb
jstorimer-deep-test-1.1.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/whiny_nil.rb
jstorimer-deep-test-1.0.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/whiny_nil.rb
jstorimer-deep-test-0.2.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/whiny_nil.rb
jstorimer-deep-test-0.1.0 sample_rails_project/vendor/rails/activesupport/lib/active_support/whiny_nil.rb
activesupport-1.4.3 lib/active_support/whiny_nil.rb
activesupport-1.4.2 lib/active_support/whiny_nil.rb
activesupport-1.4.4 lib/active_support/whiny_nil.rb
activesupport-1.4.1 lib/active_support/whiny_nil.rb
activesupport-1.4.0 lib/active_support/whiny_nil.rb
backlog-0.0.0 vendor/rails/activesupport/lib/active_support/whiny_nil.rb
backlog-0.0.1 vendor/rails/activesupport/lib/active_support/whiny_nil.rb
backlog-0.0.2 vendor/rails/activesupport/lib/active_support/whiny_nil.rb
backlog-0.0.5 vendor/rails/activesupport/lib/active_support/whiny_nil.rb
backlog-0.0.4 vendor/rails/activesupport/lib/active_support/whiny_nil.rb
backlog-0.1.1 vendor/rails/activesupport/lib/active_support/whiny_nil.rb
backlog-0.1.0 vendor/rails/activesupport/lib/active_support/whiny_nil.rb