Search Results

2
votes
2answers
80 views

Presenting Deeply Nested Resources Administration

Hello: I'd like to get some ideas on how to properly present deeply nested resources in CRUD operations. Let's say I have 4 levels of nested resources (resource 1, resource 2, resou …
0
votes
2answers
191 views

Multiple has_many_polymorphs in one model

I'm trying to define multiple polymorphic relations (has_many_polymorphs plugin) from a single parent to same children. Note has many viewers Note has many editors Vi …
0
votes

Does anyone know of any cross platform GUI log viewers for Ruby On Rails?

You might be able to use http://logging.apache.org/chainsaw/index.html . Haven't used it in a long time but I think its lo …
0
votes

non-DB attr_accessor attribute persistence in Rails

This sounds like a strange pattern (having a rake task access model attributes). Perhaps you intend to have an application config or the like? If so, there are few plugins that handles such …
1
vote

How to insert rows when using a many-to-many relation

If I understood correctly. item = Item.new(:name => "item") item.transactions.build(:name => "transaction") item.save! …
1
vote

Is there a good tool to generate an image of the database schema used in a Rails app?

Railroad - http://railroad.rubyforge.org/ …
0
votes

Problems with Netbeans re: Rails erb/rhtml intellisense?

Also, you might want to explore using HAML. It's much easier on the hands. …
5
votes

Google Analytics Alternative for a Rails Application

I've recently used RailStat, with a decent set of features. Its structure is very good, easy enough to change and can be scoped by the subdomain. …
0
votes

How to load data in a Ruby on Rails Join Table ?

That's provided that you have a model named RolesUser. If you have a habtm association, the model is probably not there. One way of loading roles could be; user = Us …