aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/basic_object.rb
blob: 5e79de993fd2a73fad8c7cc751e9099789216b32 (plain) (blame)
1
2
3
4
5
# Ruby 1.9 introduces BasicObject. Use Builder's BlankSlate until then.
unless defined? BasicObject
  require 'blankslate'
  BasicObject = BlankSlate
end