I''m trying to set up puppet-dashboard but I seem to have run into a roadblock: when executing ''rake install'' the follow message gets returned.. rake aborted! undefined method `success?'' for #<Report:0xb736795c> If it makes a difference, I''m using an sqlite database. Any assistance would be much appreciated ;) --Luke Baker -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
Luke, Interesting. I think the issue here is with migration order. The Report#success? method depends on the existence of a `success` boolean field on the reports table, which may happen at a later migration than when the method is called. Flattening the migrations into a single file should alleviate this and is also a good idea in general. I''ll fix this ASAP and release a new point version. Thanks for the heads up. -- Rein Henrichs http://reductivelabs.com -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.
Luke, Upon further review of the play, apparently a migration file "went missing". I''m not sure how, but it has been restored. Sorry about this bush league slacker stuff, things should be working fine with the just released 0.1.1 code (or the code fresh off the HEAD of the master branch, which should be stable at all times if you want the latest changes). On Tue, Dec 15, 2009 at 11:36 AM, Rein Henrichs <rein@reductivelabs.com>wrote:> Luke, > > Interesting. I think the issue here is with migration order. The > Report#success? method depends on the existence of a `success` boolean field > on the reports table, which may happen at a later migration than when the > method is called. Flattening the migrations into a single file should > alleviate this and is also a good idea in general. I''ll fix this ASAP and > release a new point version. > > Thanks for the heads up. > > -- > Rein Henrichs > http://reductivelabs.com >-- Rein Henrichs http://reductivelabs.com -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group, send email to puppet-users+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en.