|
From: javier h. <vrh...@ya...> - 2007-04-12 14:26:01
|
javier hector <vrh...@ya...> escribió: Neal, In my opinion these are the characteristics of ROR that seem to me interesting Instant Gratification ============ When you install the Rails framework, you also get a new command-line tool, rails, which is used to construct each new Rails application that you write. Create new app example $ rails example $ cd example and you will see example directory README Installation and usage information Rakefile Build script app/ Model, View, and Controller files go here components/ Reusable components config/ Configuration and database connection parameters db/ Schema and migration information doc/ Autogenerated documentation lib/ Shared code log/ Logfiles produced by your application public/ Web-accessible directory. Your application runs from here script/ Utility scripts that are useful for developers test/ Unit, functional, and integration tests, fixtures, and mocks tmp/ Runtime temporary files vendor/ Imported code Testing ==== then you can run the server (WEBrick is a pure-Ruby web server that is distributed with Ruby , for development ) >ruby script/server (Defautl WEBrick) then you can test your sample application http://localhost:3000 Convention over configuration: ================== Rails applications all have the same project structure, with directories to handle application code, database configuration, public static files, and scripts for managing Web servers and Web-based functional testing. Immediate feedback ============= With Rails, most of what you do can give you immediate feedback. Migrations can instantly show you changes after updates to your database. I think that the following articles can give you a better introduction http://www.onlamp.com/pub/a/onlamp/2006/12/14/revisiting-ruby-on-rails-revisited.html http://www.onlamp.com/pub/a/onlamp/2007/01/05/revisiting-ruby-on-rails-revisited-2.html http://www.slash7.com/articles/2005/01/24/really-getting-started-in-rails Thanks Javier Neal Lester <ne...@3d...> escribió: At 06:13 AM 4/11/2007, you wrote: >Web Applications >I think that Eiffel need a framework like Ruby on Rails(Convention >over Configuration). >This framework could be done usign >-->Goanna >-->Gobo >-->Eposix >-->DAO (EiffelStore, ECLI, EPOM, etc) >-->Orhers Javier, What are the specific design features of ROR which you prefer over the Goanna Application library? I would appreciate as much detail as possible. Thanks, Neal --------------------------------- Preguntá. Respondé. Descubrí. Todo lo que querías saber, y lo que ni imaginabas, está en Yahoo! Respuestas (Beta). Probalo ya! --------------------------------- Preguntá. Respondé. Descubrí. Todo lo que querías saber, y lo que ni imaginabas, está en Yahoo! Respuestas (Beta). Probalo ya! |