JezK
Edit File: index.html.erb
<h1>Listing posts</h1> <table> <tr> <th></th> <th></th> <th></th> </tr> <% @posts.each do |post| %> <tr> <td><%= link_to 'Show', post %></td> <td><%= link_to 'Edit', edit_post_path(post) %></td> <td><%= link_to 'Destroy', post, :confirm => 'Are you sure?', :method => :delete %></td> </tr> <% end %> </table> <br /> <%= link_to 'New Post', new_post_path %> <h2>Text area test</h2> <%= cktext_area_tag("test_area", "Ckeditor") %> <h2>Text area test with options</h2> <%= cktext_area_tag("content", "Ckeditor", :cols => 10, :rows => 20, :ckeditor => {:toolbar => 'Easy'}) %>