Sha256: 901e357be26bceb5ec9169335d687e7e594185b29378cdebe37be393922ec771

Contents?: true

Size: 794 Bytes

Versions: 157

Compression:

Stored size: 794 Bytes

Contents

# A base class with no predefined methods that tries to behave like Builder's
# BlankSlate in Ruby 1.9. In Ruby pre-1.9, this is actually the
# Builder::BlankSlate class.
#
# Ruby 1.9 introduces BasicObject which differs slightly from Builder's
# BlankSlate that has been used so far. ActiveSupport::BasicObject provides a
# barebones base class that emulates Builder::BlankSlate while still relying on
# Ruby 1.9's BasicObject in Ruby 1.9.
module ActiveSupport
  if defined? ::BasicObject
    class BasicObject < ::BasicObject
      undef_method :==
      undef_method :equal?

      # Let ActiveSupport::BasicObject at least raise exceptions.
      def raise(*args)
        ::Object.send(:raise, *args)
      end
    end
  else
    require 'blankslate'
    BasicObject = BlankSlate
  end
end

Version data entries

157 entries across 124 versions & 19 rubygems

Version Path
depengine-0.0.3 etc/isolate/ruby-1.8/gems/activesupport-2.3.8/lib/active_support/basic_object.rb
depengine-0.0.2 etc/isolate/jruby-1.8/gems/activesupport-2.3.8/lib/active_support/basic_object.rb
depengine-0.0.2 etc/isolate/ruby-1.8/gems/activesupport-2.3.8/lib/active_support/basic_object.rb
activesupport_csi-2.3.5.p8 lib/active_support/basic_object.rb
depengine-0.0.1 etc/isolate/jruby-1.8/gems/activesupport-2.3.8/lib/active_support/basic_object.rb
depengine-0.0.1 etc/isolate/ruby-1.8/gems/activesupport-2.3.8/lib/active_support/basic_object.rb
activesupport_csi-2.3.5.p7 lib/active_support/basic_object.rb
activesupport_csi-2.3.5.p6 lib/active_support/basic_object.rb
abiquo-etk-0.6.4 vendor/activesupport-2.3.8/lib/active_support/basic_object.rb
abiquo-etk-0.6.3 vendor/activesupport-2.3.8/lib/active_support/basic_object.rb
abiquo-etk-0.6.2 vendor/activesupport-2.3.8/lib/active_support/basic_object.rb
abiquo-etk-0.6.1 vendor/activesupport-2.3.8/lib/active_support/basic_object.rb
abiquo-etk-0.6.0 vendor/activesupport-2.3.8/lib/active_support/basic_object.rb
abiquo-etk-0.5.9 vendor/activesupport-2.3.8/lib/active_support/basic_object.rb
abiquo-etk-0.5.8 vendor/activesupport-2.3.8/lib/active_support/basic_object.rb
abiquo-etk-0.5.3 vendor/activesupport-2.3.8/lib/active_support/basic_object.rb
abiquo-etk-0.4.42 vendor/activesupport-2.3.8/lib/active_support/basic_object.rb
webroar-0.5.0 src/admin_panel/vendor/rails/activesupport/lib/active_support/basic_object.rb
radiantcms-couchrest_model-0.2.4 vendor/rails/activesupport/lib/active_support/basic_object.rb
radiantcms-couchrest_model-0.2.2 vendor/rails/activesupport/lib/active_support/basic_object.rb