Hi all How do I get the latest version of puppetshow? git clone git://reductivelabs.com/puppetshow is terribly slow if working at all ..... I tried http://github.com/shadoi/puppetshow/tree/master version but I can not make it work When I go to http://localhost:3000 I get: NoMethodError in Hosts#table Showing vendor/plugins/active_scaffold/frontends/default/views/ _list_header.rhtml where line #3 raised: undefined method `[]'' for #<Enumerable::Enumerator:0xb716d700> Extracted source (around line #3): 1: <% if active_scaffold_config.action_links.any? { |link| link.type == :table } -%> 2: <div class="actions"> 3: <% new_params = params_for(:action => ''table'') %> 4: <% active_scaffold_config.action_links.each :table do |link| - %> 5: <% next if controller.respond_to? link.security_method and ! controller.send(link.security_method) -%> 6: <%= render_action_link(link, new_params) -%> Can anyone help ? Moty --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Most likely you are running too recent a version of rails... I think it works with Rails 2.0 and maybe 2.1... It certainly doesn''t like the lastest (2.3.2)... I think you want to do: sudo gem install --version=2.0.2 rails Think I got the syntax right... The version number I''ve put is based on the comments I''ve seen about PuppetShow. I''ve yet to do this myself... You may need to clear out the newer version of rails as well... Does anyone know how much work is requried to get PuppetShow working with rails 2.3? I''m happy to have a crack at it, but I''m not sure what''s required... Greg (who is also trying to get PuppetShow working...) On Jun 23, 6:48 am, Moty <mot...@gmail.com> wrote:> Hi all > > How do I get the latest version of puppetshow? > > git clone git://reductivelabs.com/puppetshow > is terribly slow if working at all ..... > > I triedhttp://github.com/shadoi/puppetshow/tree/masterversion but I > can not make it work > > When I go tohttp://localhost:3000I get: > > NoMethodError in Hosts#table > > Showing vendor/plugins/active_scaffold/frontends/default/views/ > _list_header.rhtml where line #3 raised: > > undefined method `[]'' for #<Enumerable::Enumerator:0xb716d700> > > Extracted source (around line #3): > > 1: <% if active_scaffold_config.action_links.any? { |link| link.type > == :table } -%> > 2: <div class="actions"> > 3: <% new_params = params_for(:action => ''table'') %> > 4: <% active_scaffold_config.action_links.each :table do |link| - > %> > 5: <% next if controller.respond_to? link.security_method and ! > controller.send(link.security_method) -%> > 6: <%= render_action_link(link, new_params) -%> > > Can anyone help ? > > Moty--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
Well..... Regarding versions ..... I did just like this thread told me to: http://groups.google.com/group/puppet-users/browse_thread/thread/f41ce288f49d1cb/ca1767073a35b40c?lnk=gst&q=puppetshow#ca1767073a35b40c but still no luck..... Moty On Jun 23, 3:55 am, Greg <greg.b...@gmail.com> wrote:> Most likely you are running too recent a version of rails... I think > it works with > Rails 2.0 and maybe 2.1... It certainly doesn''t like the lastest > (2.3.2)... > > I think you want to do: > > sudo gem install --version=2.0.2 rails > > Think I got the syntax right... The version number I''ve put is based > on the comments I''ve > seen about PuppetShow. I''ve yet to do this myself... You may need to > clear out the newer > version of rails as well... > > Does anyone know how much work is requried to get PuppetShow working > with rails > 2.3? I''m happy to have a crack at it, but I''m not sure what''s > required... > > Greg (who is also trying to get PuppetShow working...) > > On Jun 23, 6:48 am, Moty <mot...@gmail.com> wrote: > > > Hi all > > > How do I get the latest version of puppetshow? > > > git clone git://reductivelabs.com/puppetshow > > is terribly slow if working at all ..... > > > I triedhttp://github.com/shadoi/puppetshow/tree/masterversionbut I > > can not make it work > > > When I go tohttp://localhost:3000Iget: > > > NoMethodError in Hosts#table > > > Showing vendor/plugins/active_scaffold/frontends/default/views/ > > _list_header.rhtml where line #3 raised: > > > undefined method `[]'' for #<Enumerable::Enumerator:0xb716d700> > > > Extracted source (around line #3): > > > 1: <% if active_scaffold_config.action_links.any? { |link| link.type > > == :table } -%> > > 2: <div class="actions"> > > 3: <% new_params = params_for(:action => ''table'') %> > > 4: <% active_scaffold_config.action_links.each :table do |link| - > > %> > > 5: <% next if controller.respond_to? link.security_method and ! > > controller.send(link.security_method) -%> > > 6: <%= render_action_link(link, new_params) -%> > > > Can anyone help ? > > > Moty > >--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
After encountering more problems such as no ability to compile RubyRRDtool-0.6.0.tgz when no other rrd library is working,,, I decided (not happily) to move from my Ubuntu jaunty 9.04 to RHEL5.3 and it solved both problems..... Moty On Jun 22, 11:48 pm, Moty <mot...@gmail.com> wrote:> Hi all > > How do I get the latest version of puppetshow? > > git clone git://reductivelabs.com/puppetshow > is terribly slow if working at all ..... > > I triedhttp://github.com/shadoi/puppetshow/tree/masterversion but I > can not make it work > > When I go tohttp://localhost:3000I get: > > NoMethodError in Hosts#table > > Showing vendor/plugins/active_scaffold/frontends/default/views/ > _list_header.rhtml where line #3 raised: > > undefined method `[]'' for #<Enumerable::Enumerator:0xb716d700> > > Extracted source (around line #3): > > 1: <% if active_scaffold_config.action_links.any? { |link| link.type > == :table } -%> > 2: <div class="actions"> > 3: <% new_params = params_for(:action => ''table'') %> > 4: <% active_scaffold_config.action_links.each :table do |link| - > %> > 5: <% next if controller.respond_to? link.security_method and ! > controller.send(link.security_method) -%> > 6: <%= render_action_link(link, new_params) -%> > > Can anyone help ? > > Moty--~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---