Skip to content

Instantly share code, notes, and snippets.

@manuelbrunner
Created August 10, 2011 19:49
Show Gist options
  • Save manuelbrunner/1137965 to your computer and use it in GitHub Desktop.
Save manuelbrunner/1137965 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'datamapper'
DataMapper.setup(:default, 'sqlite::memory:')
class Test
include DataMapper::Resource
property :id, Serial
property :prop, String
def set_prop(value)
prop = value
end
end
t = Test.new
t.set_prop 'a'
puts t.prop.nil?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment