Method: LibGems::Specification.overwrite_accessor

Defined in:
lib/libgems/specification.rb

.overwrite_accessor(name, &block) ⇒ Object

Some attributes require special behaviour when they are accessed. This allows for that.



226
227
228
229
# File 'lib/libgems/specification.rb', line 226

def self.overwrite_accessor(name, &block)
  remove_method name
  define_method(name, &block)
end