Hi,
I’m discovering Ruby on Rails and I’m limited with the fact that I don’t
know which methods are available on the different objects provided by
the framework.
For example I use the following code to create my table:
create_table :my_table do |t|
t.column “title”, :string
end
I know that the column method exists for this object because I saw some
examples on the Net … How can I know all the methods available for
this object (table object I guess?).
Thanks for any help. I presume it is a very basic question but I didn’t
find the answer in the Ruby on Rails tutorials.
John