Displaying 2 results from an estimated 2 matches for "date_published".
Did you mean:
  dmdate_published
  
2006 May 20
1
acts_as_paranoid overrides ActiveRecord::Base??
...class at all (this 
particular class is not "paranoid"). So it looks like just having 
"acts_as_paranaoid.rb" in my lib directory overrides Base for all cases, 
hence my suspicion about the above line...
>> b = Book.find(1) 
=> #<Book:0x277bff4 @attributes={"date_published"=>nil, 
"dimensions"=>nil, "title"=>"Title", "id"=>"1", "subtitle"=>nil, 
"pages"=>"343", "author_description"=>nil}>
>> b.tags
ArgumentError: Unknown key(s): from
        f...
2006 Jul 08
9
How to handle dynamically columned tables in rails
I want to build an application that lets me (the end user accessing a 
web page) design a simple list with columns and add records. E.g., if 
the end user says I want a table that has a list of songs, he can create 
a list (title, date, artist, label) and then make another list of, e.g., 
books on his bookshelf with the necessary columns (title, author, 
pub_date, shelf).
The end user