meanwhile I'm pretty desperate since I can't continue working on my Website. I created a Ruby on Rails server and added a products controller via scaffolding. When I am on my local server, I can add a new product (new object of the product category) with the already given Rails structure. But I want to add the objects/products in my text documents, but where exactly is this possible?
I know I can add a product like so: bike1 = Bike.create ( :name => "Nice Bike" ) But where exactly do I have to add it that it is displayed on the show page of the Product controller?
And is it possible to see my created products in my database folder?
Thank You!