aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/basic_object.rb
blob: 009a521a40a41cd96bb0744b23248a8a4c508250 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Ruby 1.9 introduces BasicObject which differs slighly from Builder's BlankSlate
# that had been used so far ActiveSupport::BasicObject provides a barebones object with
# the same method on both versions.
module ActiveSupport
  if RUBY_VERSION >= '1.9'
    class BasicObject < ::BasicObject
      undef_method :==
      undef_method :equal?
    end
  else
    require 'blankslate'
    BasicObject = BlankSlate
  end
end