This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Kevin Bullock (author)
Thu Oct 15 08:19:59 -0700 2009
machinist / FAQ.markdown
Machinist FAQ
My blueprint is giving me really weird errors. Any ideas?
If your object has an attribute that happens to correspond to a Ruby standard function, it won't work properly in a blueprint.
For example:
OpeningHours.blueprint do
open { Time.now }
end
This will result in Machinist attempting to run ruby's open command. To work around this use self.open instead.
OpeningHours.blueprint do
self.open { Time.now }
end







