Skip to content

Instantly share code, notes, and snippets.

@ahoward
Created December 10, 2008 05:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ahoward/34252 to your computer and use it in GitHub Desktop.
Save ahoward/34252 to your computer and use it in GitHub Desktop.
class Bucket < ActiveRecord::Base
include Sluggable
Fu = FileUtils
belongs_to :collection
collection_reader = instance_method 'collection'
define_method('collection') do |*a|
@collection ? @collection : collection_reader.bind(self).call(*a)
end
collection_writer = instance_method 'collection='
define_method('collection=') do |value|
@collection = collection_writer.bind(self).call(value)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment