Sha256: e9b107b647dbd87e2978ba39923da9d87464ac2b0a70826de5fef9232a4d5773

Contents?: true

Size: 218 Bytes

Versions: 51

Compression:

Stored size: 218 Bytes

Contents

class Module
  def remove_possible_method(method)
    remove_method(method)
  rescue NameError
  end

  def redefine_method(method, &block)
    remove_possible_method(method)
    define_method(method, &block)
  end
end

Version data entries

51 entries across 51 versions & 4 rubygems

Version Path
social_url_stats-0.0.1 vendor/ruby/1.9.1/gems/activesupport-3.0.0/lib/active_support/core_ext/module/remove_method.rb
activesupport-3.0.20 lib/active_support/core_ext/module/remove_method.rb
activesupport-3.0.19 lib/active_support/core_ext/module/remove_method.rb
activesupport-3.0.18 lib/active_support/core_ext/module/remove_method.rb
activesupport-3.0.17 lib/active_support/core_ext/module/remove_method.rb
activesupport-3.0.16 lib/active_support/core_ext/module/remove_method.rb
activesupport-3.0.15 lib/active_support/core_ext/module/remove_method.rb
activesupport-3.0.14 lib/active_support/core_ext/module/remove_method.rb
activesupport-3.0.13 lib/active_support/core_ext/module/remove_method.rb
activesupport-3.0.13.rc1 lib/active_support/core_ext/module/remove_method.rb
activesupport-3.0.12 lib/active_support/core_ext/module/remove_method.rb
activesupport-3.0.12.rc1 lib/active_support/core_ext/module/remove_method.rb
activesupport-3.0.11 lib/active_support/core_ext/module/remove_method.rb
messagebus_ruby_api-0.4.7 spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/module/remove_method.rb
messagebus_ruby_api-0.4.4 spec/ruby/1.9.1/gems/activesupport-3.0.9/lib/active_support/core_ext/module/remove_method.rb
activesupport-3.0.10 lib/active_support/core_ext/module/remove_method.rb
activesupport-3.0.10.rc1 lib/active_support/core_ext/module/remove_method.rb
activesupport-3.1.0.rc5 lib/active_support/core_ext/module/remove_method.rb
activesupport-3.0.9 lib/active_support/core_ext/module/remove_method.rb
activesupport-3.0.9.rc5 lib/active_support/core_ext/module/remove_method.rb