I\'m trying out ActiveScaffold with Rails 3.0, still trying to get it to work at all. I\'m getting an error
Following this tutorial for setting up ActiveScaffold with Rails3: http://vhochstein.wordpress.com/2010/08/28/setupactivescaffoldrails3/#comment-4
Schema: persons (id, name, birthyear, gender) pets (id, person_id, name, leg_count) plants (id, person_id, kind, qty)
Hey fellow Rail-ists, do know any equivalent of ActiveScaffold but being ORM agnostic or at least for Mongoid?开发者_开发百科rails_admin
I managed to do almost all the way towards happiness with my custom form in ruby-on-rails, but the very last step is missing and it is impossible to find the answer on the net because of too many comm
I\'m using vhochstein\'s fork of active_scaffold, which runs quite nicely on rails 3, except for a few small bugs - http://github.com/vhochstein/active_scaffold.
I have an application with Rails 2.3.5. And Im trying to use AS latest version, I have used it previously but cant make it work here.
So I have this create form to create schedules where there is a bunch of fields and one of them is seaso开发者_C百科ns. And seasons table has a field called \'is_current\' which if set to 1 tells us t
Consider the following models: class Artist < ActiveRecord::Base has_many :artist_events has_many :events, :through => :artist_events
I\'m using ActiveScaffold to create an Admin UI. I have two models: Post and Comments. A Post has-many Comments, and a Comment belongs-to a post.