search for: simple_app

Displaying 2 results from an estimated 2 matches for "simple_app".

Did you mean: sample_app
2009 Sep 25
1
generate model error
I''m new on rails, and I encountered a problem when I am doing a tutorial: that''s a simple application without a database. First "rails simple_app" And modify "enviroment.rb" # Skip frameworks you''re not going to use. To use Rails without a database, # you must remove the Active Record framework. config.frameworks -= [ :active_record, :active_resource, :action_mailer ] However, after that when I execute the com...
2006 Nov 14
11
RESTful mixin, mixin repo?
Hi, I just put together a little mixin to provide pseudo-RESTful services in camping apps. Basically, it looks for a hidden _verb field in form posts, and sets the @method to the supplied value (e.g. put or delete - which browsers don''t support). This lets you define put and delete methods in your controllers. Groovy. Code: http://pastie.caboo.se/22613 Is there any permanent repo of