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
gemstreamer-1.2.0 spec/assets/testapp/vendor/rails/activesupport/lib/active_support/basic_object.rb
gemstreamer-1.1.1 spec/assets/testapp/vendor/rails/activesupport/lib/active_support/basic_object.rb
gemstreamer-1.1.0 spec/assets/testapp/vendor/rails/activesupport/lib/active_support/basic_object.rb
gemstreamer-1.0.0 spec/assets/testapp/vendor/rails/activesupport/lib/active_support/basic_object.rb
gemstreamer-0.0.0 spec/assets/testapp/vendor/rails/activesupport/lib/active_support/basic_object.rb
radiant-rc-0.9.0 vendor/rails/activesupport/lib/active_support/basic_object.rb
activesupport-2.2.3 lib/active_support/basic_object.rb
webroar-0.2.2 src/admin_panel/vendor/rails/activesupport/lib/active_support/basic_object.rb
radiant-0.8.1 vendor/rails/activesupport/lib/active_support/basic_object.rb
activesupport-2.3.4 lib/active_support/basic_object.rb
activesupport-2.3.3 lib/active_support/basic_object.rb
activesupport-2.3.2 lib/active_support/basic_object.rb
activesupport-2.2.2 lib/active_support/basic_object.rb
mack-active_record-0.8.2 lib/gems/activesupport-2.2.2/lib/active_support/basic_object.rb
mack-facets-0.8.3 lib/gems/activesupport-2.2.2/lib/active_support/basic_object.rb
mack-facets-0.8.3.1 lib/gems/activesupport-2.2.2/lib/active_support/basic_object.rb
radiant-0.8.0 vendor/rails/activesupport/lib/active_support/basic_object.rb